I'm developing a web app that adds an application to a users profile, and I want to remove the app with an API call also. I read the docs about that:
https://developers.facebook.com/docs/facebook-login/permissions/requesting-and-revoking
It seems I have to perform an HTTP DELETE request as this
DELETE /{user-id}/permissions
but I need the complete URL becasue I manually created an access flow, and i don't know how to perform the request without having the complete URL.
Is it something like
https://graph.facebook.com/{user_id}/permissions?access_token={token}
?
Will it remove the application also from the Application Settings tab on the Facebook profile?
It's important that. I don't want to revoke only the permissions, I want to "delete" the app completely.
If not how can I do that not manually, but through an API call?