Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.