<a href="#" onclick="FB.logout(function(response) { window.location.reload(true);});"><b>logout?</b></a>

Returns: FB.logout() called without an access token.

Any ideas on how to fix this?

link|improve this question

feedback

1 Answer

As per the documentation:

FB.logout will log the user out of both your site and Facebook. You will need to have a valid access token for the user in order to call the function.

Since the method logs the person out of Facebook, you first need to have the user log in and give permission to your application (via FB.login()), before they can be logged out.

What are you trying to accomplish?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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