De-authorize a Facebook app using the new OpenGraph API
问题 I have this code to de-authorize my FB application for currently logged in user: FB.api({ method: 'Auth.revokeAuthorization' }); It's using the deprecated REST API. How do I do the same using the OpenGraph API with FB.api method? 回答1: I figured it out: FB.api("/me/permissions", "delete", function(response){}); 回答2: In graph API you can issue HTTP DELETE request to https://graph.facebook.com/_UID_/permissions this should deauthorize the app 来源: https://stackoverflow.com/questions/7533997/de