对于我的生活,我无法使用Event.subscribe('auth.authResponseChange')来工作。见下面的代码
<div id="fb-root">
</div>
<script>
window.fbAsyncInit = function () {
FB.init({
appId: 'XXXXXXXXXXXXXXX', // App ID
channelUrl: 'http://XXXXXXXX.us/', // Channel File
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
FB.Event.subscribe('auth.authResponseChange', function (response) {
alert('The status of the session is: ' + response.status);
});
};
// 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>
<div class="fb-login-button" data-size="xlarge" scope="email" data-show-faces="false"
data-width="400" data-max-rows="1" autologoutlink="true">
Login with Facebook</div>
登录按钮呈现。我也可以退出唯一的问题是auth.response更改没有触发,我没有收到“消息”弹出窗口
答案 0 :(得分:-1)
您的代码看起来很好。
我会访问您的Facebook应用并特别检查2个设置。
http://localhost:#####/
,其中#####是您的端口。希望有所帮助。
答案 1 :(得分:-4)
您的fbAsyncInit函数是异步调用的,因此您不会看到任何警报消息。请尝试使用console.log进行调试。