I'm attempting to log a user out of facebook with the Facebook JS SDK, however calling:

FB.logout(function(response){
    console.log(response);
});

returns: response.status == "connected"

And only after refreshing the page does the SDK realize that the session has ended. Anyone know what could be causing this behavior? This code previously worked in my application and has recently started behaving this way.

Another example using FireBug:

enter image description here

link|improve this question

When calling the logout and before refreshing your page, if you go on Facebook are you still connected ? If you call the logout twice in a row, is it the same response ? (if not isn't it just a matter of timing between calls & response ?) (And, even if it's not answering the "why" part, can't you fix this by reloading the page in the response ?) Oh and, last one, "undefined" is another console.log i presume ? – Flow' S. Jan 13 at 10:58
@Flow' S, Yes 'undefined' is an irrelevant console log. FB.logout() does log the user out of facebook, but the current page FB object doesn't realize it until after a refresh. I would strongly prefer not to have to manually refresh the page after the user logs out. Also I attempted to delete the fbsr_ cookie to see if this removed it -- no effect. This previously worked and only recently changed. Also, I tried the same test on hulu.com which uses the FB JS SDK, same results. Is this possibly a bug in the SDK? – Casey Flynn Jan 13 at 19:12
I'm currently use FB.getLoginStatus from FB.logout callback to ensure JS-SDK forget about user. – Juicy Scripter Jan 13 at 19:58
feedback

6 Answers

up vote 6 down vote accepted
+100

https://developers.facebook.com/bugs/245362365535898?browse=search_4f112135664703a96454690 This is a bug in the JS SDK that has now been fixed and it should get pushed in not too long.
Until then you can do the following

FB.logout(function(response) {
  FB.Auth.setAuthResponse(null, 'unknown');
  ...
});
link|improve this answer
Thanks, this worked for me! – Mark Apr 30 at 17:29
feedback

See http://hustoknow.blogspot.com/2012/01/dealing-with-zombie-facebook-cookies.html

When you logout, a cross-domain request gets sent to Facebook to invalidate the session. When you hit reload, another request gets sent to Facebook's site -- since FB recognizes the cookie as invalid, it correctly deletes the cookie from your browser.

I suspect it's a regexp bug in how they forgot to parse the fbm_ cookie, recently introduced in the last day or so. I'm just surprised that this fix hasn't been pushed.

link|improve this answer
feedback

I've faced similar kind of problem. I've used FB.getLoginStatus() after Logout.

link|improve this answer
feedback

I have the same experience with the FB.Logout() not working as advertised. As a workaround I use the below javascript function to check if the user is logged in and if so, redirect to https://www.facebook.com/logout.php with the URL of the subsequent page to load and their access token:

    function reallylogout() {
      FB.getLoginStatus(function (response) {
        if (response.authResponse) {
           window.location = "https://www.facebook.com/logout.php?next=" +
             'URL to redirect to' +
             "&access_token=" + response.authResponse.accessToken;
        } else {
           $("#loginButtonDiv").show();
           $("#logoutButtonDiv").hide();
        }
      });
    }

The show/hide bit is just jQuery to show or hide divs that have a login and logout button in them. The logout button's onclick triggers the reallyLogout() function.

This works for my app.

link|improve this answer
This works, but I'm really looking for a solution that can trigger the FB JS SDK to 'forget' about the logged in user without performing a page refresh. Up until a few weeks ago this worked, and I have not made any changes since then. – Casey Flynn Jan 13 at 21:41
feedback

It appears broken in Facebook. On FB rell you can login but the logout function does nothing. http://www.fbrell.com/auth/all-in-one

link|improve this answer
feedback

It's may be doesn't work because u don't include your Fb app key it's work for me like this:

 Ext.get('auth-logoutlink').on('click', function(){   
                  FB.getLoginStatus(function (response) {
                    if (response.authResponse) {
                       window.location = "https://www.facebook.com/logout.php?confirm=1&api_key=**MYAPIKEY**&next=" +
                         '**MYWEBSITEURL**' +
                         "&access_token=" + response.authResponse.accessToken;
                    } else {
                       //HIDE **LOGOUT BUTTON**
                       //SHOW **LOGIN BUTTON**
                    }
                  });
        }); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.