Facebook PHP SDK 注销功能

发布于 2024-11-14 11:31:21 字数 96 浏览 1 评论 0原文

你能向我解释一下如何调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘逸的'云 2024-11-21 11:31:21

我认为没有办法做到这一点。
如何对使用 $facebook->getLogoutUrl 生成的 url 发出curl 请求。

在他们的 js api 中
他们提供了

FB.logout

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

FB.logout

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

暖阳 2024-11-21 11:31:21

或者您可以使用 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文