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.

please be gentle, its the first facebook application im doing.. I have a facebook application that require several permissions (i.e. to read user comments, profile picture, cover picture etc). These are set up from the permissions section of my application. The problem is that when users use this application, the only permission access being asked is:

THIS APP WILL RECEIVE: Your basic info

ignoring all the other permissions that I originally required. Any ideas why is this?

share|improve this question
Please provide relevant code snippets so we can see what you did. And improve accept rate a bit (50% is not enough). Thanks – giorashc Dec 24 '12 at 16:21

1 Answer

Set the list of permissions while logging in the user. For example-

FB.login(function(response) 
{
   if (response.authResponse) 
   {
       console.log('Welcome!  Fetching your information.... ');
       FB.api('/me', function(response) 
       {
             console.log('Good to see you, ' + response.name + '.');
       });
   } 
   else 
   {
       console.log('User cancelled login or did not fully authorize.');
   }
},{scope: 'email,user_likes'});
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.