使用 PHP SDK / JavaScript SDK 删除扩展权限?

发布于 2024-12-14 05:37:30 字数 206 浏览 2 评论 0原文

在我的应用程序中,我想允许用户更改扩展用户权限,而无需进入隐私设置页面。

在旧的 REST API 中,有“auth.revokeExtendedPermission”操作来删除特定权限,但我不想使用此 API,因为它很快就会被贬值。

是否有其他方法可以使用较新的 PHP SDK 或 JavaScript SDK 删除扩展权限?

最好的 弗莱什巴尔

in my app I want to allow the users to change the extended user permissions without going to the privacy settings page.

In the old REST API there is the "auth.revokeExtendedPermission" action to remove a specific permission, but I don't want to use this API because it will be depreciated soon.

Is there an other way to remove an extended permission using the newer PHP SDK or the JavaScript SDK?

Best
Flashbaer

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

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

发布评论

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

评论(2

于我来说 2024-12-21 05:37:30

根据 auth.revokeExtendedPermission 文档,替换 < a href="https://developers.facebook.com/docs/reference/api/" rel="nofollow">Graph API 是一个 HTTP DELETE/{用户id}/permissions?permission={权限名称}

此处介绍:https://developers.facebook.com/docs/reference/api/user/#permissions

According to the auth.revokeExtendedPermission documentation the replacement for this in the Graph API is a HTTP DELETE to /{user id}/permissions?permission={permission name}

This is covered here: https://developers.facebook.com/docs/reference/api/user/#permissions

赠我空喜 2024-12-21 05:37:30

删除权限的调用示例:

$delete_success = $fb->api('/'.$fb->getUser().'/permissions?permission=create_event', 'DELETE');

Example call to delete a permission:

$delete_success = $fb->api('/'.$fb->getUser().'/permissions?permission=create_event', 'DELETE');

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