0

我正在使用 facebook javascript sdk 连接到 facebook

但 FB.Event.subscribe auth.login 没有被触发。

这是我正在使用的代码

    window.fbAsyncInit = function() {
    // init the FB JS SDK
    FB.init({
      appId      : 'xxxxxxxxx',                        // App ID from the app dashboard
      channelUrl : 'MychannelUrl', // Channel file for x-domain comms
      status     : true,                                 // Check Facebook Login status
      xfbml      : true                                  // Look for social plugins on the page
    });

    // Additional initialization code such as adding Event Listeners goes here
FB.Event.subscribe('auth.login', function(response) {console.log('event fired');
    if(response.status === 'connected') { console.log('connected');  }  
});

    }

      // Load the SDK asynchronously
      (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/en_US/all.js";
         fjs.parentNode.insertBefore(js, fjs);
       }(document, 'script', 'facebook-jssdk'));
    </script>
4

1 回答 1

4

好吧,而不是使用 auth.login 使用 auth.statusChange

FB.Event.subscribe('auth.statusChange', function(response) {
        if (response.status === 'connected') {
                      //the user is logged and has granted permissions
        } else if (response.status === 'not_authorized') {
              //ask for permissions
        } else {
              //ask the user to login to facebook
        }
    });

请记住,这仅在用户状态发生更改时才会触发,因此如果您想在第一次运行时获取用户的状态,请使用该FB.getLoginStatus()函数。此函数给出的响应与auth.statusChange事件相同,connected并且not_authorized

于 2013-04-09T13:59:30.520 回答