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 implemented a Facebook based login. The FB.login works perfectly, but the FB.logout doesn't. I have tried with different FB.init, deleting cookies, running the logout page several times in a row, but the only way to log my user out is in facebook itself.

The code I'm using for logout is:

<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>

  FB.init({
    appId: '***************',
    xfbml: true,
    status: true,
    cookie: true
  });

  FB.getLoginStatus();

  FB.logout();
</script>

Any ideas? Thank you

share|improve this question
1  
you also need to destroy the session in php it can be done by session_destroy(); – Database_Query Sep 30 '12 at 17:47
Thanks. Do you know the asp equivalent? – Marco Gouveia Oct 1 '12 at 18:50
Tried session_destroy() and session_unset() and still doesn't work :( – Marco Gouveia Oct 1 '12 at 19:04

1 Answer

did you tried having some button onclick event is FB.logout();

function logout(){
     FB.logout(function(response) {
        // user is now logged out
     });
 }

  <button onclick="logout()">LogOut</button>

Try This

share|improve this answer
Thanks for your help. It actually worked! I was convinced I needed the FB.init in order to run FB.logout. Apparenty not. – Marco Gouveia Feb 6 at 20:22

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.