Reputation: 2783
I am developing an Android app and one of its feature is to fetch all Facebook's page. I know how to fetch information of a logged in user, but I also want to get list of pages created by that user. I searched everywhere on developer.facebook.com and also tried Graph API Explorer but couldn't find list of pages created by that logged in user.
I know ways to get all information of a particular page but that is not what I want. Please help me in this issue with some links or snippets.
Upvotes: 0
Views: 614
Reputation: 31489
You can use the
/me/accounts
endpoint to receive the list of Pages the logged-in User created. Be sure to grant the "manage_pages" permission!
Upvotes: 1