没有识别具有FB('/ me',功能(用户){}的Facebook用户

时间:2012-01-10 10:52:11

标签: facebook facebook-graph-api facebook-login

我几天都在处理这个错误。 它过去常常使用相同的代码,但现在我遇到了这个错误。从那以后我改变了主机。也许可以吗? 当我使用我的Facebook帐户登录并且应用程序被批准时,我仍然无法检索用户ID和其他默认数据。

这是脚本,请提出建议:

<html xmlns:fb="http://www.facebook.com/2008/fbml">
<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script src="http://www.oneslike.me/js/jquery-1.6.2.min.js"></script>           
<script>
 $(document).ready(function(){           
    FB.init({
      appId      : 'YOUR API KEY HERE',
      status     : true, 
      cookie     : true,
      xfbml      : true,
      oauth      : true,
    });

    FB.Event.subscribe('auth.login', function(response) {
      window.location.reload(); //When logged reload
    });         
    FB.api('/me', function(user){ 
        if(user.id!=null){
            alert("Logged user with FB_id: "+user.id);
            $("#login_div").hide(); $("#data_div").show();
            var user_data = '<img src="http://graph.facebook.com/'+user.id+'/picture"><br/><a href="'+user.link+'">'+user.name+'</a>';              
            document.getElementById('data_div').innerHTML(user_data);               
        }
        else
        {
            alert("Not logged user");
            $("#login_div").show(); $("#data_div").hide();
        }
    });      
});      
</script>
<div id="login_div" style="display: none;">
    <fb:login-button data-scope="user_birthday">Login with Facebook</fb:login-button> 
</div>
<div id="data_div" style="display: none;">      
</div>

 

1 个答案:

答案 0 :(得分:0)

当您致电FB.init()时,FB.api()可能尚未完成加载并初始化会话?我遇到了类似的问题。为我修复的问题是将FB.api()电话打包在FB.getLoginStatus()中,就像这样:

FB.getLoginStatus(function(response) {
    FB.api(function(response){ });
});

在调用API之前,似乎延迟/确保会话已正确初始化。我希望它也适合你。