我有以下代码:
<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如何做事?
编辑: 我有时会收到以下错误:
1个XFBML标记无法在30000ms内渲染。
从https://stackoverflow.com/a/4182542/968219
找到临时解决方案我不知道为什么会这样,但我很高兴它修复它。有谁知道更好的解决办法吗?
答案 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>
参考:
答案 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'});