I am using the Facebook API with libCurl. I tried to logout the user using the logout.php page but the access token is still valid and I can access user data. I could reproduce this in a browser:
I login to my application and retrieve user data using the open graph with the "me" object:
"https:"//graph.facebook.com/me/?access_token=ACCESS_TOKEN (Quotes just because I can't post any more hyperlinks.)
I get a .js file with the data. So far OK.
Now I want to logout the user: https://www.facebook.com/logout.php?access_token=ACCESS_TOKEN&next=http://www.google.com
I get redirected to google.com, but I can still retrieve the user data using the me-URL with the access token.
So the access token hasn't become invalid which means that there was no logout! Am I seeing this wrong? What can be done to invalidate the access token on logout?
Thank you!
Fabian