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.

Is it possible to revoke the user permission using the code behind?

share|improve this question

2 Answers

check this:

        var fbContext = FacebookContext.Current;
        fbContext.Application = new FacebookApplication()
        {
            AppId = ###,
            AppSecret = ###
        };

        fbContext.Authorize(
            new string[] {"user_likes","email",..},
            {AppUrl},
            {TabUrl}
        );
share|improve this answer

yes:

var fb = new FacebookClient(accessToken);
var res = fb.Delete("me/permissions");

if (res is bool && (bool)res == true)
{
    // Facebook access token has been successfully revoked
}

see the official documentation: https://developers.facebook.com/docs/reference/api/user/#permsdelete

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.