我有以下代码:
<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>
- 我使用 Facebook 登录应用程序。
- 页面刷新显示我已登录。
- 如果我再次刷新或加载页面,那么 Facebook 将加载插件。大约 10 秒后,页面将重新加载。
我是初始化错误还是这只是 Facebook 做事的方式?
编辑:我有时会收到以下错误:
1 XFBML 标签未能在 30000 毫秒内呈现。
从https://stackoverflow.com/a/4182542/968219找到了一个临时修复
我不知道为什么会这样,但我很高兴它修复了它。有谁知道更好的解决方法?