I am using facebook login integration on my asp.net site. What I want is - when user logs off the site, I wont him to also log off teh FB application, but not facebook itself. If I call FB.logout() it logs off FB as well as the app. I guess what I want is to lose teh acess_token cookie for the app, but can't figure out
|
|
I dont think that is possible as the login for both the application and FB is done using FB credentials.. In case you want to de-authorize the user from your application you can issue an HTTP DELETE request to /PROFILE_ID/permissions to revoke authorization for an app. |
|||||||
|
|
I'm not sure this is a good idea. Even if you removed the session for your website, if they are still logged into facebook, they may as well still be logged into your website. They are essentially the same thing. You need to log them out of facebook to ensure their security on your site, otherwise it just takes someone sharing the pc or cookie sniffing, to get access to their account on your site edit: also, if you just want to delete the cookie, you can simply do this with javascript. |
|||
|
|