Graph API / FQL How to remove my own application from the user?

I get offline_access from the user when he accepts my application. Now, on my website, a user can delete my access to their facebook account. Is there any way to tell Facebook to remove my application from this user?

thanks for the help

+7
source share
1 answer

To cancel authorization for an application, you can use the HTTP DELETE request with:

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

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

You can revoke the authorization of the application or revoke certain extended permissions on behalf of the user by sending an HTTP DELETE PROFILE_ID request / permissions using the user access_token for this application.

+7
source

All Articles