Christian Engel
Christian Engel

Reputation: 3778

check if app can manage page

I have a problem here. I have three parameters which I want to check if they go along together:

What I want to do now is to check if the given app really can access and manage the given page with the given access token. In detail - I want to check if the app could post on the pages wall in behalf of the page.

Upvotes: 1

Views: 461

Answers (1)

bkaid
bkaid

Reputation: 52083

Access https://graph.facebook.com/pageID?fields=access_token&access_token=... and if it returns a valid result, that means you have proper manage_pages permission, which is the permission you need to post images as an admin of the page.

Upvotes: 1

Related Questions