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 have created a forum using php/mysql and users login through facebook using php sdk. the login works perfectly. the logout however does not. I have not tried the javascript sdk and it is supposted to work . but i need a solution in PHP.

Here are the two things that i have tried.

//this is signout .php

$logoutURL=$facebook->getLogoutURL(array('next'='http://localhost/php_lessons/forum_facebook/logout_page.php'));

header('Location:'.$logoutURL);

//this is signout.php

$ACCESS_TOKEN=$facebook->getAccessToken(); $REDIRECT='http://localhost/php_lessons/forum_facebook/logout_page.php';

"https://www.facebook.com/logout.php?access_token=ACCESS_TOKEN&confirm=1&next=REDIRECT"

both the solutions take me to facebook/home.php of the user that is trying to logout. (me for test purposes).

share|improve this question

2 Answers

up vote 0 down vote accepted

The logout problem is because of a recent Facebook API change – ‘offline_access Permission Removal’.

Disable the ‘Deprecate offline access’ setting from Edit App > Advanced > Migrations tab

You can read more about it at: http://developers.facebook.com/roadmap/offline-access-removal/

share|improve this answer
thanks a lot. it works. but i still dont understand what the article says. – user1308359 Apr 13 '12 at 10:49

Use getLogoutUrl without the array.

$facebook->getLogoutUrl();
share|improve this answer
It does not work using that default logout url. – dskanth Feb 27 at 6:35

Your Answer

 
discard

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