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.

When the user clicks Logout, I trigger FB.logout() and redirect the user to the homepage.

However the homepage still thinks the user is logged in to facebook, so it redirects again to somewhere else. After the second redirect it realizes the user is logged out, but it's too late.

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

index.php:

FB.Event.subscribe('auth.login', function(response) {
  window.location.href='login_facebook.php?action=login';
});
share|improve this question

1 Answer

FB.logout is supposed to be used with a callback function. If you tried

<a href="index.php" onclick="FB.logout(function(response){});">Logout</a>

you should find that the user is not redirected to index.php before FB.logout returns.

share|improve this answer
one issue is that not everyone is logged in by facebook. I think with this method, "regular" users will never be redirected? – nute Nov 10 '11 at 14:58
While I am not sure how I could have known that you were using two different authentication systems based on your question description, I have completely changed my solution. Please try my updated answer. – Martey Nov 10 '11 at 18:01

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.