Reputation: 41
In summary, I'm setting up an app, and I have selected various User & Friend permissions (in particular, user_likes
and publish_actions
). However, my app's authorization dialog fails to list these permissions, and instead indicates that my app is requesting access only to Basic Info. Any ideas what might be wrong?
Here are some additional details:
And some additional background:
Upvotes: 1
Views: 567
Reputation: 11
The scope also worked for me after hours of headbanging. Just be sure to use this notation: {scope: 'user_likes, user_location, etc'} at the end of the FB.login function to set all desired permissions from your app itself.
Upvotes: 0
Reputation: 96216
and I have selected various User & Friend permissions
Where? In your app settings?
These settings affect only Authenticated Referrals – when a user clicks on a link to your app from within facebook.com.
When you are handling the login yourself, however, you have to specify the permissions at this point via the scope
parameter.
Upvotes: 1