Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When i want to logout users from my website i use:

$logoutUrl = $facebook->getLogoutUrl(array('next' => 'logout.php'));

And $logoutUrl displays correct link, however it's not redirecting me to the url specified in next. It redirects me to the page that started logout.

As it looks that there is very much articles on internet, but they all use same methods and for many people those don't work. How to properly logout user from facebook and then perform my regular logout script?

EDIT: This worked but still want some non-javascriptSDK based logout.

<a id="logout" href="logout.php" onclick="FB.logout(function(response) { window.location = 'logout.php' }); return false;" title="<?php echo $lang['logout']; ?>"><?php echo $lang['logout']; ?></a>
share|improve this question

2 Answers

up vote 10 down vote accepted

You should use absolute URLs. e.g.

//   (or https://)
$here = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$next = preg_replace('~#.*$~s', '', $here);
$next = preg_replace('~\?.*$~s', '', $next);
$next = preg_replace('~/[^/]*$~s', '/logout.php', $next);
$logoutUrl = $facebook->getLogoutUrl(array('next' => $next));

Or simply:

$logoutUrl = $facebook->getLogoutUrl(array('next' => 'http://...../logout.php'));
share|improve this answer
thanks it worked...:-) – Peeyush Mar 26 '12 at 10:25

I know this is old, but the reason getLogoutUrl() isn't redirecting to your "next" url is because it doesn't log the user out or redirect at all. It simply gives you the proper url which you need to use to do the logout and redirect (e.g. header("Location: $logoutUrl")). After you redirect, the user will be logged out and your "next" url will be called.

Note: do not clear out the Facebook session variables (e.g. destroySession) before calling getLogoutUrl(). If you do, the access token included in the returned url will equal 0 instead of your access token.

The documentation isn't too clear on this, but the function is very appropriately named.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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