I've got following code:
$fb = new Facebook(array('appid'=>APPID, 'appsecret'=>APPSECRET));
$user = $fb->getUser();
if($user)
{
try {
$me = $fb->api('/me');
}
catch(FacebookApiException $e) {
error_log($e);
enter code here
$user = null;
}
if($user) { blah blah blah
And it works properly if user is not logged in and if the user logs in, it works. But only if he click link from $fb->getLogoutUrl() and successfully logs out from facebook, my app still holds his data. I read that trying $fb->api('/me') should throw an exception if user is logged out but it isn't. Clearing the $_SESSION table helps but I don't think that is properly solution.
Any idea's?
destroySessionafter logging the user out? – Sammaye Aug 6 '12 at 14:36accessTokenis not invalidated by logout and fb now uses the extended access tokens which allow offline access for 60 days as suchdestroySessionshould uinset the cookies and solve the problem, I think... – Sammaye Aug 7 '12 at 9:11