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.

Here is an interesting quandary. My website lets users register by connecting with Facebook. When the user connects we create an account for them, send them a welcome email etc... We also have a function for them to completely delete their account and all their content. However when they do this, it does not delete the app from Facebook.

When a user visits the site, it checks to see if they have connected and have granted permissions, if so it automatically either logs them in, or if it doesn't fine a user account for them, creates one. The delete action on my site deletes everything but if the user doesn't delete the app from their Facebook account, they will come back and just be given a new account on our site.

Is there a way to remove the app from the user's facebook account via an API call so that when they delete their account on my site, I can also remove the app?

share|improve this question

1 Answer

up vote 2 down vote accepted

Yep, this is fairly simple in the API.

Using your App access token or that user's access token, make a HTTP DELETE request to https://graph.facebook.com/{USER ID}/permissions

This will uninstall the app from that user's profile. It won't prevent them re-adding it though, in which case you'll be in the same situation of needing to create a new account for the user when they return.

share|improve this answer
Thanks for the answer. I had a little difficulty because I did not realize the app token was different from the graph tool's user token. I was finally able to retrieve one from the Access Token Tool page, and then the deleting went smoothly. – Seth Battin May 6 at 21:39

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.