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 doing this? The docs are pretty bad - and circular.
|
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 doing this? The docs are pretty bad - and circular. |
||||
|
|
|
Its simple with Graph_API. Steps-
-thats all U can test this procedure in this page -> Just click on 'Get Access Token' button-> under 'Extended permission' check 'manage_pages' & submit it. It will give you the admin-page-details JSON. |
|||||||||||||
|
|
I solved it with some FQL:
|
|||
|
|
|
You can call 'accounts' is a connection of the User object. See the documentation for this @ http://developers.facebook.com/docs/reference/api/user Of course, with Facebook, there's always a catch. Right now this method will return not only the pages the user is an admin of, but also what applications they have installed. I'm almost positive this is NOT the intended behavior - I seem to remember using this a few months ago and only getting a list of pages. The documentation makes no mention of applications in this list either. This is an easy problem to solve though - Facebook returns the name, category, and id for each item on the list, and each application has a category of 'Application'. I'm simply making sure I only list items whose category is not 'Application'. |
|||
|
|
Note that your solution returns Pages as well as Applications. If you strictly want Pages, you can use FQL Multiquery with a "Type not equals" clause like this:
|
|||
|
|
|
You ask for the permission with the JavaScript SDK on login
and then once they log in you can retrieve the pages (and apps) as follow :
|
|||
|
|