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
Permission
$facebook->getLoginUrl( array( "scope" => "manage_pages" ) );
action
$accounts = $facebook->api('/me/accounts'); return $accounts;