facebook FB.Event.subscribe(' auth.authResponseChange')不工作

时间:2012-07-27 06:30:40

标签: javascript html facebook

对于我的生活,我无法使用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更改没有触发,我没有收到“消息”弹出窗口

2 个答案:

答案 0 :(得分:-1)

您的代码看起来很好。

我会访问您的Facebook应用并特别检查2个设置。

  1. 选中“沙盒模式” - 确保将其设置为“已禁用”
  2. 检查您的网站网址和/或Canvas网址 - 确保将其设置为您的网域。 (即如果您在本地工作,您的网址应该类似于http://localhost:#####/,其中#####是您的端口。
  3. 希望有所帮助。

答案 1 :(得分:-4)

您的fbAsyncInit函数是异步调用的,因此您不会看到任何警报消息。请尝试使用console.log进行调试。