Reputation: 307
I have ASP.NET web application that
Registration process contains the following steps:
The application works perfect until user clicks Cancel at step 4. When this happens, the browser is redirected to my application, the user remains signed into the Facebook but the application is not authorized by this user. This means that the application cannot logout this user from the Facebook by using the FB.logout method because the application does not have access token.
How to logout from the Facebook in this case?
Thank you.
Upvotes: 0
Views: 368
Reputation: 96316
How to logout from the Facebook in this case?
Not possible at all.
If logging a user out without a valid access token was possible, then every website I’m visiting could do that if they liked – I’m sure you can see how annoying that’d be to users, and that it’s therefor not possible.
Upvotes: 0