从Facebook Javascript SDK会话对象中提取用户ID

时间:2011-03-18 04:18:45

标签: facebook facebook-graph-api facebook-javascript-sdk facebook-java-api

我正在使用Facebook的Javascript SDK“FB.ui”来启动OAuth对话框。单击allow后,我需要捕获会话对象,提取用户ID并在我的脚本中进一步使用它。出于某种原因,我无法正常工作,即使会话确实存在,我也会不断定义。

<script src="http://connect.facebook.net/en_US/all.js"></script>
<div id="fb-root"></div>
<script type="text/javascript">
FB.init({
    appId  : '***************',
    status : true,
    cookie : true,
    xfbml  : true
});
FB.getLoginStatus(function(response) {
    if (response.session) {
        //do something
    } else {
        FB.ui({
            method: 'oauth',
            display: 'page',
            scope: 'email',
            perms: 'email'
        },
        function(response) {
            alert(response.session.uid); //returns underfined
        });
    }
});
</script>

4 个答案:

答案 0 :(得分:2)

获取用户ID:

FB.getLoginStatus(function(response) {
  alert(response.authResponse.userID);
});

答案 1 :(得分:1)

当您从facebook的登录按钮登录时,它会在您的系统中存储包含您也是唯一的访问令牌的Cookie。该cookie还包含您的Facebook ID。

答案 2 :(得分:0)

检查您的回复。我打赌它会说"display" must be one of "popup", "iframe" or "hidden".之类的东西显然无法使用默认的“页面”显示来调用oauth对话框。并且display: 'iframe'要求您包含access_token,这就是您首先调用oauth对话框的原因&gt;:l。

我不认为FB.ui当前可以用于获取oauth对话框,除非你想使用弹出窗口,现在大多数人都阻止了它。

答案 3 :(得分:0)

所以我按照自己的意愿开始工作。这可能不是最好的方式,但经过多次挖掘和挫折之后,我希望这可以帮助有同样问题的人走上正轨。

JS来源:

FB.getLoginStatus(function(response) {
    if (!response.session) {
        //initiate FB OAuth js popup dialog
        FB.ui({
            method: 'oauth',
            display: 'page',
            scope: 'email',
            perms: 'email'
        },
        function(response) {
            if (response.session) { //if permission Allowed
                var thesession = response.session;
                var thesession = eval('(' + thesession + ')'); //decode json
                //POSTing to local file get.user_graph.php, to fetch user info
                $.ajax({
                    type: "POST",
                    url: "get.user_graph.php",
                    data: "client_id=<?php echo $appId; ?>&client_secret=<?php echo $secret; ?>&sessions="+thesession.session_key+"&type=client_cred&uid="+thesession.uid,
                    dataType: "text",
                    success: function(user_graph){
                        var user_graph1 = eval('('+user_graph+')');
                        alert(user_graph1.name); //users name
                        alert(user_graph1.id); //users id
                        alert(user_graph1.email); //users email
                        alert(user_graph1.link); //users profile link
                    }
                });
            } else {
                //if permission Not Allowed
            }
        });
    }
});

get.user_graph.php来源:

//exchange our session for an access_token
define('POSTURL', 'https://graph.facebook.com/oauth/exchange_sessions');
define('POSTVARS', 'client_id='.$_POST['client_id'].'&client_secret='.$_POST['client_secret'].'&sessions='.$_POST['sessions'].'&type=client_cred');
$curl_token = curl_init(POSTURL);
curl_setopt($curl_token, CURLOPT_POST,1);
curl_setopt($curl_token, CURLOPT_POSTFIELDS,POSTVARS);
curl_setopt($curl_token, CURLOPT_FOLLOWLOCATION,1);
curl_setopt($curl_token, CURLOPT_HEADER,0);
curl_setopt($curl_token, CURLOPT_RETURNTRANSFER,1);
$token = curl_exec($curl_token);

$token_decoded = json_decode($token,true);
//get the user graph (personal info)
$user_graph = file_get_contents("https://graph.facebook.com/".$_POST['uid']."?access_token=".$token_decoded[0]['access_token']);
echo $user_graph;