0

如果我登录到 facebook,testAPI() 函数会按预期触发,但是当我退出 facebook 并刷新我的初始化代码所在的页面时,什么也没有发生。我的控制台应该记录“未登录”或“未授权”,但事实并非如此。我已经尝试清除缓存,但它不起作用。

FB.Event.subscribe('auth.authResponseChange', function(response) {

     //this works 

      testAPI();

    } else if (response.status === 'not_authorized') {



      console.log("not authorized");

    } else {


      console.log("not logged in");
    }

  });

var testAPI = function() {
    console.log('Welcome!  Fetching your information.... ');
    FB.api('/me', function(response) {
      console.log('Good to see you, ' + response.name + '.');
    });
  };
4

1 回答 1

1

auth.authResponseChange仅在状态实际更改时触发,在您的情况下它永远不会改变。

你想要的是使用FB.getLoginStatus.

于 2013-07-30T05:06:18.523 回答