使用Facebook登录插件加载连接的FB帐户后页面重新加载

时间:2012-04-28 23:24:42

标签: facebook plugins facebook-javascript-sdk facebook-login

我有以下代码:

<html xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
    <title></title>
</head>
<body>
<div id="fb-root"></div>
<script>
    window.fbAsyncInit = function() {
        FB.init({
            appId      : 'APP_ID', // App ID
            status     : true, // check login status
            cookie     : true, // enable cookies to allow the server to access the session
            xfbml      : true  // parse XFBML
        });

        // Additional initialization code here
    };

    // Load the SDK Asynchronously
    (function(d){
        var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
        if (d.getElementById(id)) {return;}
        js = d.createElement('script'); js.id = id; js.async = true;
        js.src = "//connect.facebook.net/en_US/all.js";
        ref.parentNode.insertBefore(js, ref);
    }(document));
</script>
<fb:login-button show-faces="true" width="370" max-rows="5" scope="email">Log In with Facebook</fb:login-button>
</body>
</html>
  1. 我使用Facebook登录应用程序。
  2. 页面刷新,显示我已登录。
  3. 如果我再次刷新或加载页面,那么Facebook将加载该插件。大约10秒后,页面将重新加载。
  4. 我是否初始化错误或者这只是Facebook如何做事?

    编辑: 我有时会收到以下错误:

      

    1个XFBML标记无法在30000ms内渲染。

    https://stackoverflow.com/a/4182542/968219

    找到临时解决方案

    我不知道为什么会这样,但我很高兴它修复它。有谁知道更好的解决办法吗?

2 个答案:

答案 0 :(得分:0)

尝试添加频道文件

FB.init({
            appId      : 'APP_ID', // App ID
            status     : true, // check login status
            channelUrl : '//WWW.MY_DOMAIN.COM/channel.html', // Channel File
            cookie     : true, // enable cookies to allow the server to access the session
            xfbml      : true  // parse XFBML
        });

频道文件只包含:

 <script src="//connect.facebook.net/en_US/all.js"></script>

参考:

http://developers.facebook.com/docs/reference/javascript/

答案 1 :(得分:0)

看起来xfbml渲染无法正常工作,请尝试使用HTML版本。

<div class="fb-login-button" show-faces="true" width="370" max-rows="5" scope="email">Login with Facebook</div>

或者您也可以构建自己的登录按钮并将其绑定到:

 FB.login(function(response) {
   // handle the response
 }, {scope: 'email'});