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.

I'm using in the function getLogoutUrl() in order to enable to the user to log out.

When the user is on url page with parameters there is a problem. If the user will press on logout link which directs to A.php page which is including header command. The header url is (example):

https://www.facebook.com/logout.php?next=http://bla.net?x=100&y=200&z=120

it will redirect to:

http://bla.net?x=100

and not to the full URL.

I've tried to use in urlencode on http://bla.net?x=100&y=200&z=120 but it didn't help. It's redirecting to Facebook home page.

I'd like to get any help. Thanks in advance.

share|improve this question
It's working for me, are you using the next parameter? $facebook->getLogoutUrl(array('next' => 'http://example.com/example.php?a=1&b=2&c=3')); ?? – ifaour Jul 19 '11 at 8:14

1 Answer

up vote 0 down vote accepted

That was a known bug in the old PHP SDK , as far as I remember. If you have not switched to the new PHP SDK, I would recommend doing that. But as a workaround for your current problem - use the JavaScript SDK to logout ( either thru AJAX or just echoing out the js snippet from your PHP code). Redirect to your desired URL in it's callback function:

FB.logout(function(response) {
  window.location="redirect URL";
});

Hope that helps.

share|improve this answer
Thanks for your quick answer. I use the new PHP SDK (version 3) so perhaps it was not fixed. – Nimi Jul 18 '11 at 17:48

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.