使用 facebook javascript API 放弃权限

发布于 2025-01-08 10:59:35 字数 159 浏览 0 评论 0原文

我正在开发与 Facebook 时间轴的集成,并希望为用户提供一个单独的选择加入功能。如果用户现在选择加入,我将获得 publish_actions 权限,以便我可以将内容发布到时间线。如果他们后来选择退出,我是否可以通过任何方式告诉 Facebook 我不再需要该用户的许可?

I'm working on an integration with the Facebook Timeline and want to have a separate opt-in feature just for it for users. If a user opts in now, I get the publish_actions permission so I can post things to the timeline. If they later opt-out is there any way for me to tell Facebook I no longer want that permission for that user?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

缪败 2025-01-15 10:59:35

您可以通过在 https://graph.facebook.com/USER_ID/permissions?permission=xxxx 上执行 DELETE 来撤销应用的权限。

您可以通过使用该应用程序的用户 access_token 向 PROFILE_ID/权限发出 HTTP DELETE 请求,代表用户取消对应用程序的授权或撤销特定的扩展权限。 Facebook 用户 API


参数

权限 - 您希望撤销的权限。如果您不指定权限,那么这将完全取消对应用程序的授权。

You can revoke permissions for your app by performing a DELETE on https://graph.facebook.com/USER_ID/permissions?permission=xxxx.

You can de-authorize an application or revoke a specific extended permissions on behalf of a user by issuing an HTTP DELETE request to PROFILE_ID/permissions with a user access_token for that app. Facebook User API


Parameter:

permission - The permission you wish to revoke. If you don't specify a permission then this will de-authorize the application completely.

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