markzzz
markzzz

Reputation: 47945

Facebook doesn't take from my app the auth for user_posts

I've made an application that use this scope (v. 2.4):

publish_actions,email,user_posts

when I try to autenticate my user (using the one that create the app) it shows me the three permissions to accept, correctly.

But when I use another user, it only asks to accept publish actions and email. user_posts is ignored. So I can't get the post of that user. This is the endpoint for autenticate users:

https://www.facebook.com/v2.4/dialog/oauth?response_type=token&client_id=MyID&redirect_uri=MyRedirectURL&scope=user_posts%2Cemail%2Cpublish_actions

What should I enable to make the application work (i.e. all auth) for all users?

Upvotes: 0

Views: 270

Answers (1)

Tobi
Tobi

Reputation: 31479

To be able to request permissions from all users instead of only the app's admins/developers/testers, your app has to pass Facebook Login Review.

It's all in the docs:

Upvotes: 1

Related Questions