使用 PHP SDK / JavaScript SDK 删除扩展权限?
在我的应用程序中,我想允许用户更改扩展用户权限,而无需进入隐私设置页面。
在旧的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
根据 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
删除权限的调用示例:
$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');