0

当用户从我的应用程序中注销但仍登录 facebook 并尝试再次通过 OAuth 登录到我的应用程序时,我正在尝试寻找解决方案。
我通过收听“auth.login”事件来检查授权状态。
当用户在这种情况下单击 facebook-connect 按钮时,弹出窗口会启动,自动关闭,然后什么也没有发生(因为用户已经在 facebook 上登录,所以不会触发登录事件)。如果我添加 getLoginStatus() 检查,那么用户在打开页面时会自动登录到我的应用程序,即使他没有点击 facebook-connect 按钮(这就是我不想要的)有什么想法吗?谢谢!

4

1 回答 1

1

当用户已经登录此 FB 事件时,请在此处指定您的执行代码。

 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-09-21T14:04:20.597 回答