I\'m using the graph api.
I have a logged in user, and want to get back a list of page ids of all the pages that the user is an admin of.
Is there a way of d
You ask for the permission with the JavaScript SDK on login
FB.login(function(){}, {perms:'manage_pages'});
and then once they log in you can retrieve the pages (and apps) as follow :
FB.api('/me/accounts', function(response){ console.log(response); })