且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Graph API / FQL如何从用户中删除我自己的应用程序?

更新时间:2023-08-17 15:24:28

要撤消对应用的授权,您可以使用HTTP DELETE请求:

To revoke authorisation for an app, you can use a HTTP DELETE request with:

 https://graph.facebook.com/PROFILE_ID/permissions

http://developers.facebook.com/docs/reference/api/user/#permissions


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

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.