When users logout of my site, I want to also log them out of Facebook. Here is my code:
if ($this->user->isLoggedIn() == true) {
// if they are logged into facebook log them out of facebook first.
$facebook = new App_Tools_Facebook();
if ($facebook->getUser()) {
$fbLogoutUrl = $facebook->getLogoutUrl(array('next'=>PF_ROOT_URL.'/login/logout'));
$facebook->setSession(null);
$this->redirect($fbLogoutUrl);
}
$this->user->logout();
}
$this->redirect(PF_ROOT_URL);
Basically the flow is:
- Check if they are logged in to my site
- If they are, check if they Facebook Connected
- If they are, first log them out of Facebook
- Once Facebook redirects them back log them out of my site.
The problem seems to be that when Facebook redirects them back, the $facebook->getUser() value is still set- resulting in an infinite redirection loop. WHY IS THIS HAPPENING? I'm pretty sure this exact piece of code was working on my other site too....
if($facebook->getSession())– ifaour Feb 19 '11 at 23:25