I'm currently implementing a site that uses FB Connect as well as our own system to handle logins. The way it is currently setup, a user who has previously been to our site and approved our permissions is auto-logged in when they visit the site again. Also, if the user hits the logout button when they're logged into their account using FB it will log them out of FB.
Right now if a user is logged in and hits the logged out button it logs them out of FB fine. The site automatically goes to create them a new session and a check gets called to see if the user is still logged into FB using the PHP SDK getUser() function. It seems that even though the user logged out the SDK is caching the user ID and saying they're logged in anyways ... from the SDK. You can see the call to the cache below. Is there anyway to over-ride this w/o modifying the FB SDK or am I approaching the problem wrong?
if ($this->user !== null) {
// we've already determined this and cached the value.
return $this->user;
}
return $this->user = $this->getUserFromAvailableData();