Facebook PHP SDK 注销功能
你能向我解释一下如何调用 facebook php sdk 的注销功能吗?如果没有登录用户,则必须单击使用 $facebook->getLogoutUrl 生成的注销链接。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为没有办法做到这一点。
如何对使用
$facebook->getLogoutUrl
生成的 url 发出curl 请求。在他们的 js api 中
他们提供了
http://developers.facebook.com/docs/reference/javascript /FB.logout/
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
http://developers.facebook.com/docs/reference/javascript/FB.logout/
或者您可以使用 header("Location: ".$facebook->get:LogoutUrl());
这将自动重定向用户,而无需他们单击任何内容
Curl 可能无法工作,因为curl 请求可能没有相同的访问令牌
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