vote up 0 vote down star

When a user first hits my site's login screen, I have Facebook Connect determine if the user is logged into Facebook and reload the page if true:

<script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php"></script>

<script type="text/javascript">
  FB.init('MY_API_KEY', '/xd_receiver.htm', { 'reloadIfSessionStateChanged': true });
</script>

When the page is reloaded, my backend PHP code checks if the user is logged into Facebook and then logs them in automatically to my site:

$Facebook = new Facebook(MY_API_KEY, MY_APP_SECRET);

if ($Facebook->get_loggedin_user()) {
  // Log the user in.
}

That part works fine. The problem is with the logout functionality. My logout link currently looks like this:

<a href="#" onclick="FB.Connect.logoutAndRedirect('http://my.url/logout/');">Log Out</a>

When that's clicked, the user is successfully logged out of Facebook, but the backend Facebook PHP object still thinks the user is logged in ($Facebook->get_loggedin_user() still returns their user ID), so my login code then logs them in again automatically.

So the problem I'm finding is that even though Facebook Connect logs the user out, the backend Facebook PHP object still considers the user logged in. Does anyone know how to overcome this? Can I not login the user automatically with my PHP code?

Thanks for any help!

flag

75% accept rate
Try dumping your facebook-related cookies on the problematic page. I don't think there should be any, by the time you get there. – Frank Farmer Oct 23 at 23:52
I described this same problem stackoverflow.com/questions/1546277/… – Xeoncross Nov 10 at 23:18

2 Answers

vote up 0 vote down

Can you setup a variable of your own to flag when this occurs, as a workaround?

link|flag
Yeah, I could, but I'd like some more elegant. It seems like my scenario is pretty common? Are others not doing it the way I am? – jstayton Oct 23 at 21:34
vote up 0 vote down

I just helped someone with a similar issue. Basically, you need to expire the facebook session and then clean up the cookies afterwards (it's a bit tricky and not really explained all that well in the docs):

http://stackoverflow.com/questions/1386557/how-to-log-out-users-using-facebook-connect-in-php-and-zend/1386749#1386749

Vote it up if it helps ;)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.