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 am using Google App Engine and deploying my app on Facebook as a Facebook canvas app (the app gets loaded in the iframe and so on)

I redirect the player to the Facebook log in page when he visits the homepage with an empty session. Then I fill the session once the player logs in using the graph API.

The problem now is that when a player signs out of Facebook, my sessions keeps the records stored and the user stays signed into the app.

I want to detect if the user logs out of Facebook, preferably from the server side.

share|improve this question

2 Answers

Try to subscribe to the logout event:

FB.Event.subscribe('auth.logout', function (){
    // do stuff
});

Or try this:

FB.Event.subscribe('auth.authResponseChange', function(response) {
    alert('The status of the session is: ' + response.status);
});

Look here: http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

share|improve this answer

Here's how to detect on your server if the user has logged out of Facebook. When you call into the graph API using their user access token Facebook will respond with this (if they've logged out of facebook)

{
  "error": {
    "type":"OAuthException","message":"Error validating 
      access token: The session is invalid because the 
      user logged out."
   }
}
share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:28

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.