Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a RoR app using omniauth. I want to allow the user to log out so that they can sign in with a different Facebook user, but no matter what I do, once a user logs into FB, it keeps them logged in.

I have tried: https://www.facebook.com/logout.php?next=&access_token=

To no avail. I also tried the reauth option for omniauth-facebook but that resulted in the user being brought to FB rather than to my specified redirect URL.

share|improve this question
You might want to give this a shot: stackoverflow.com/questions/2764436/facebook-oauth-logout – brimil01 Sep 24 '12 at 22:55
I am not currently using the FB javascript API and I don't want to. – user1098873 Sep 25 '12 at 14:36

1 Answer

Its easy, add this to your javascript initialization code: (after FB.init)

FB.logout(function(response) {
        FB.Auth.setAuthResponse(null, 'unknown');
        setTimeout('document.location.reload()',0);
      });

And the button of sign out:

<a href="/" onclick="FB.logout();">Logout</a>

Using the approach https://www.facebook.com/logout.php?next=&access_token= will make your user leave your page, as facebook won't redirect to your website again.

I hope this will solve your problem.

share|improve this answer
hello, did you fix your problem? – simo Mar 17 at 13:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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