I’m using facebook JS SDK version 2.11
. For Login I’ve added following code
FB.login(function(response) {
// Handling Code here
}, { scope: "user_posts" });
But Login Dialog doesn’t have permission for user_posts
. I also checked using me/permissions
and user_posts
is not there.
How can I get access_token
to get user_posts
on FB.Login
. App is still in developer mode and facebook review team is also facing the same issue.
Please Help!
2
Answers
I think you need to let Facebook review your app.
From the docs:
You can try to get user feed at facebook graph api explorer – this is the best testing environment.
Then try
GET https://graph.facebook.com/v2.12/me/feed?access_token=<ACCESS_TOKEN>
this is request u are in need of use.
Also try
This will definitely help you with debugging your app. If @BigJ is right, you won’t do much without app reviewed. Hope my answer is helpful.