我在我的网站上安装了Facebook SDK JS。 代码:
window.fbAsyncInit = function() {
FB.init({
appId: 'IDAPP',
channelUrl : '//http://mysite.com/channel.php',
xfbml: true,
oauth: true,
status: true,
cookie: true
});
FB.Event.subscribe('auth.authResponseChange', function(response) {
if (response.status === 'connected') {
console.log('connected');
} else if (response.status === 'not_authorized') {
console.log('noauth');
} else {
console.log('nocon');
}
});
};
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/pl_PL/all.js";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
和我的html标签看起来:
html xmlns:fb="http://ogp.me/ns/fb#"
但是,控制台是空的。为什么?没什么错误,没有记录。
在身体标签中我有
<div id="fb-root"></div>