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.

How can I logout or disconnect a Facebook user in the Facebook connect session?

I'm using the Facebook developer toolkit. After using "connectSession.Logout()", the method "connectSession.IsConnected()" is still returning "true". Have I done something wrong?

EDIT: Now, I know that you can't logout a user just from the Facebook connect site. A user can be logged out only from the entire Facebook site. How can I do that with Facebook Developer Toolkit?

share|improve this question

1 Answer

up vote 4 down vote accepted

Edit:

In answer to your second question, just log them out using the JavaScript SDK:

FB.logout(function(response)
{
    // user is logged out
    // redirect to local logout script
});

Here's also an answer I made before that should help. This answer is for the older javascript and php SDK, but it should still apply.

How to log out users using Facebook Connect in PHP and Zend?

share|improve this answer

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.