It's a requirement that the web application I'm working on (let's call it MySocialApp) should log the user out once if they have logged out of Facebook. Similarly, the user must be logged out of Facebook when they log out of MySocialApp.
As such, I have the following click handler on MySocialApp's Logout link:
LoginState.prototype.handleClick = function (e) {
try {
e.preventDefault();
} catch (x) {}
var FBCallback = $.proxy(function () {
this.doLocalLogout(e.target);
}, this);
try {
FB.logout(FBCallback);
}
catch (x) {
FBCallback();
}
};
The doLocalLogout method mentioned simply sets window.location to the href of the logout link that was clicked.
The above code works for all scenarios we are testing for, except one edge case.
Facebook triggers the callback function when it has completed logging the user out of Facebook, and then continues with the click event (by calling doLocalLogout()), logging the user out of MySocialApp.
If FB.logout() raises an exception, the user is also logged out of MySocialApp.
However, if the user has logged out of Facebook elsewhere (in a separate browser window, for example) and has not made a new page request on MySocialApp, FB.logout() fails silently and does not raise an exception or return anything. If I call this.doLocalLogout immediately after FB.logout() (not using the callback), it's more than likely that the user won't have been logged out of Facebook in time and will remain logged in.
I am using FB.Event.subscribe('auth.logout', this.doLocalLogout) as well, however this only gets called once the user makes a new page request or reloads the page on MySocialApp having been logged in to Facebook on the previous page.
I have two possible solutions:
- Wrapping the call to
FB.logout()in a condition that first checks if they are actually logged in (viaFB.getLoginStatus()) - Calling
this.doLocalLogout()after 500ms or so regardless of what happens withFB.logout()
Neither solution is optimal in my opinion since both will cause a perceivable delay between clicking on the link and actually being logged out. This edge case aside, at least FB.logout() is synchronous and makes it appear as though the browser is doing something when you've clicked on MySocialApp's logout link. FB.getLoginStatus() is async, and would simply result in a not-insignificant delay. The latter option has the same drawbacks.
Logging the user out of MySocialApp by destroying its session cookies with Javascript is not an option as they are set to HttpOnly.
So, with that in mind, is there a third option I've not yet come accross that will allow FB.logout() to fail yet still continue to "follow" MySocialApp's logout link without causing the browser to wait around?