I want to remove my application from the users applications on fb by removing the permissions from it, until now I have found in the graph documentation a call for doing it: https://graph.facebook.com/me/permissions using the method delete.
I think the way to do this from the fb sdk is
FB.api('/me/permissions', 'delete', {}, function(response) {
if (!response || response.error) {
alert('Error occured:');
} else {
alert('way to go' );
}
});
but there is some server side logic I want to do so I prefer to use the FbGraph gem instead of the sdk approach.
Solved, I found the method to do this with FbGraph
me = FbGraph::User.me(ACCESS_TOKEN) me.revoke!
This will revoke all the permissions for the whole application or you can send a list with the permissions you want to remove
me.revoke! :friends, :email
