views:

67

answers:

2

Using the old REST API, you could do call https://api.facebook.com/method/pages.isAdmin to know if a user was the admin of a given page.

How can you do that using the Graph API? I can't find anything about it in the documentation and start to wonder if it's even possible.

+1  A: 

You may be able to view that info in the accounts connection

Peter Bailey
oh that's pretty cool, thanks! It's too bad that you have to get all the pages of a user just to check if he's admin of one page though...
marcgg
A: 

Another option would be to run FQL on page_admin table.

serg
yes, but I'm trying to use the graph API
marcgg

related questions