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.

can you explain to me how can i call logout function of facebook php sdk, without that logged user have to click on logout link generated with the $facebook->getLogoutUrl.

share|improve this question
possible duplicate of Facebook PHP SDK logout – user198003 Jun 5 '11 at 15:47

2 Answers

up vote 0 down vote accepted

I think theres no method to do it.. how about making a curl request for the url generated using $facebook->getLogoutUrl.

in their js api they have provided

FB.logout

http://developers.facebook.com/docs/reference/javascript/FB.logout/

share|improve this answer

Or you could use header("Location: ".$facebook->get:LogoutUrl());

That would automatically redirect the user, without them having to click anything

Curl might not work as the curl request may not have the same access token

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.