2010-12-30 2 views
0

からのFacebookユーザーUIDを取得します。ここでのポイントは私はこのコードを持っているFB.ui

FB.ui(
    { 
    method: 'stream.publish', 
    attachment: { 
     name: 'JSSDK', 
     caption: 'The Facebook JavaScript SDK', 
     description: (
     'A small JavaScript library that allows you to harness ' + 
     'the power of Facebook, bringing the user\'s identity, ' + 
     'social graph and distribution power to your site.' 
    ), 
     href: 'http://fbrell.com/' 
    }, 
    action_links: [ 
     { text: 'fbrell', href: 'http://fbrell.com/' } 
    ] 
    }, 
    function(response) { 
    if (response && response.post_id) { 

/* 
    HERE 
*/ 
     alert('Post was published.'); 
    } else { 
     alert('Post was not published.'); 
    } 
    } 
); 

を、どのように私は、ユーザーのUIDを取得できますか? I'v試行回数:

var user_id = FB.getSession()。uid; NULL IS :( FB.api( '/私'); //は、OAuthの

しかし、0結果を必要とし、事前に おかげで

+0

このリンクを参照してくださいhttp://karlsheen.com/facebook/fetching-data-from-facebook-using-curl-and-javascript-sdk/ –

+0

PURE JS/SDKを使用することですありえない? – beddamadre

答えて

関連する問題