2

我正在尝试检查用户是否已登录 facebook(并重定向到其他页面),但我无法为此打开任何弹出窗口:

这将起作用:但会打开一个弹出窗口以防用户未登录 facebook

FB.login(function(response) {
    if(response.status == 'connected')
              /*Redirect here*/
});

这在我的另一个网站上工作,但不是在这里

window.fbAsyncInit = function() {
                FB.init({
                  appId      : myAppid, // App ID 
                  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.login', function() {
                      /* REDIRECT HERE */
                });
              };
              // 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/es_ES/all.js";
                 ref.parentNode.insertBefore(js, ref);
               }(document));

这里有什么线索吗?

4

1 回答 1

6

您可以使用它FB.getLoginStatus来获取您想要的信息。

在当前浏览器会话中第一次FB.getLoginStatus被调用,或者 JS SDK 被初始化时status: true,响应对象将被 SDK 缓存。后续调用FB.getLoginStatus将从此缓存响应返回数据。

文档中的示例:

FB.getLoginStatus(function(response) {
  if (response.status === 'connected') {
    // the user is logged in and has authenticated your
    // app, and response.authResponse supplies
    // the user's ID, a valid access token, a signed
    // request, and the time the access token 
    // and signed request each expire
    var uid = response.authResponse.userID;
    var accessToken = response.authResponse.accessToken;
  } else if (response.status === 'not_authorized') {
    // the user is logged in to Facebook, 
    // but has not authenticated your app
  } else {
    // the user isn't logged in to Facebook.
  }
});
于 2012-05-22T08:43:22.773 回答