0

我有以下代码:

<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 秒后,页面将重新加载。

我是初始化错误还是这只是 Facebook 做事的方式?

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

1 XFBML 标签未能在 30000 毫秒内呈现。

从https://stackoverflow.com/a/4182542/968219找到了一个临时修复

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

4

2 回答 2

0

It looks like the xfbml rendering is not working properly, try using the HTML version.

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

or you can also just build your own login button and bind it to this:

 FB.login(function(response) {
   // handle the response
 }, {scope: 'email'});
于 2012-04-29T13:34:05.123 回答
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/

于 2012-04-29T00:02:42.797 回答