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.

I am asking for a few extra permissions using the scope parameter when launching the facebook application. Is there any way I can know immediately which permissions have been denied by the user?

share|improve this question

2 Answers

up vote 1 down vote accepted

Query: https://developers.facebook.com/tools/explorer/?method=GET&path=me%2Fpermissions

See https://developers.facebook.com/docs/reference/api/user/ for more information on the user object's permissions connection.

share|improve this answer

Here is a simple function (modified from a class I wrote to simplify Facebook API calls) to check if there are discrepencies between the 'scope' of the Facebook app and the permissions granted by the user.

function checkPermissions($scope, $facebook)
{
    // Break the scope into an array
    $scope = array_map('trim', explode(",", $scope));

    // Get the users permissions from Facebook and put them in an array
    $getUserPerms = $facebook->api('/me/permissions');
    $userPerms = array_keys($getUserPerms['data'][0]);

    // Permissions not granted is the difference between these arrys
    $ungrantedPerms = array_diff($scope, $userPerms);

    if ( ! empty($ungrantedPerms)) {
        // authenticate user again
    }
}

Is assumes the scope is formatted in the following way:

$scope = 'email, user_about_me, user_likes, manage_pages, publish_stream';
share|improve this answer
+1. I ended up using something similar. – DarkCthulhu Mar 8 at 17:31
1  
Awesome. I know it's late (really late) but I figured it would help someone else, especially considering how hard it is to find this type of information in the Facebook API documentation! – Chris Hayes Mar 8 at 17:45

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.