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.
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 think theres no method to do it..
how about making a curl request for the url generated using in their js api they have provided
http://developers.facebook.com/docs/reference/javascript/FB.logout/ |
|||
|
|
|
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 |
|||
|
|