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.

Let's say I have an facebook application running using the JS SDK.

First user clicks on LINK A, and I do a call to FB.login() asking for the "email" permission.

<a href="#" onclick="doLogin();>LINK A</a>
<script>
function doLogin() {
FB.login(function (res) {
//res contains authResponse, i.e. the user is logged in.
}, { scope : 'email'} });
}
</script>

Then I will do a check on authResponse to check if user logged in or not.

if(res.authResponse) {
//User logged in
} else {
//User NOT logged in
}

NOW let's say that on LINK B, I want to ask for the "user_birthday" permission:

FB.login(function (res) {
//Now res.authResponse is set even if user did NOT grant access to the "user_birthday" permission
}, { scope : 'user_birthday'} });

However when the request for "user_birthday" is made the user is already logged in to the application - and therefore authResponse will be set regardless if user granted access to the additional permission, or clicked cancel.

Is there a way to check if user gave the additional permission?

I know I can do a lookup on the api on /me/permissions - but I wonder if there's a way to do it in the FB.login() callback?

share|improve this question

1 Answer

up vote 1 down vote accepted

Yes, using that user access token, query me/permissions.

FB.api('me/permissions',function(permsArr){
  var canGetBirthday = PermissionExists(permsArr, 'user_birthday'); // write your own PermissionsExists parser....
});
share|improve this answer
Isn't there a way to do it without additional lookup? – jack Feb 5 '12 at 0:46
Not that I am aware. You can try doing a console.dir(response); on what facebook returns, but I doubt that anything along the lines of permissions granted would be in there. – DMCS Feb 5 '12 at 0:50

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.