Andrew Kallem
Andrew Kallem

Reputation: 41

Permissions not Refreshing

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

Answers (2)

Mark G. Russell
Mark G. Russell

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

C3roe
C3roe

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

Related Questions