Why doesn't FB.login delete the logout cookie?

僤鯓⒐⒋嵵緔 提交于 2020-01-13 20:37:01

问题


I have a problem with Facebook authentication logic:

  1. On home page load, I call getLoginStatus() and if I get "connected", I redirect the user to his account page. If not, the user can click the login button that calls FB.login().
  2. If the user is logged in and then navigates back to home page (full page load), getLoginStatus() there returns "connected" as expected and user gets bounced back to account page.
  3. However, when the logged in user calls FB.logout() and repeats steps 1-2, the 2nd step will always yield "unknown" login status. So, FB.logout() basically breaks my bouncing logic.

I checked the mechanics of login/logout calls and it appears FB.logout() creates a fblo_<appId> cookie with 1 year expiration that blocks getLoginStatus() from returning the proper status. This seems to be the actual mechanism for keeping people logged out, which I can understand. What I can't understand, though, is: why this cookie is not deleted on a successful FB.login() call?


回答1:


I fixed it myself by programatically deleting the cookie fblo_<appid> in callback functions of both FB.login() and FB.logout()




回答2:


I was experiencing this a few days ago but I'm not seeing the issue any more.

In either case make sure you consider these different scenarios when testing:

A person logs into Facebook, then logs into your app. Upon logging out from your app, the person is still logged into Facebook.

A person logs into your app and into Facebook as part of your app's login flow. Upon logging out from your app, the user is also logged out of Facebook.

A person logs into another app and into Facebook as part of the other app's login flow, then logs into your app. Upon logging out from either app, the user is logged out of Facebook.

https://developers.facebook.com/docs/reference/javascript/FB.logout/


Debugging tip:

In the Application tab in Chrome you can select Cookies in the left panel and then type fblo into the search box to filter by that name. When I call FB.login and successfully authenticate I see that the fblo cookie disappears - so I believe this issue fixed.



来源:https://stackoverflow.com/questions/44705792/why-doesnt-fb-login-delete-the-logout-cookie

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!