Facebook API SDK revoke access

前端 未结 4 1371
灰色年华
灰色年华 2020-11-30 05:50

How can I allow a user to revoke access to my application using their API service, SDK. http://developers.facebook.com/docs/sdks/

Looking at the documentation I can\

4条回答
  •  爱一瞬间的悲伤
    2020-11-30 06:48

    For the FB JavaScript SDK:

    FB.api('/me/permissions', 'delete', function(response) {
        console.log(response); // true
    });
    

提交回复
热议问题