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.

in my app I want to allow the users to change the extended user permissions without going to the privacy settings page.

In the old REST API there is the "auth.revokeExtendedPermission" action to remove a specific permission, but I don't want to use this API because it will be depreciated soon.

Is there an other way to remove an extended permission using the newer PHP SDK or the JavaScript SDK?

Best Flashbaer

share|improve this question

1 Answer

up vote 0 down vote accepted

According to the auth.revokeExtendedPermission documentation the replacement for this in the Graph API is a HTTP DELETE to /{user id}/permissions?permission={permission name}

This is covered here: https://developers.facebook.com/docs/reference/api/user/#permissions

share|improve this answer

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.