views:

13

answers:

1

I'm developing an application and want to let users connect their account to one of their Facebook Pages that they administer.

Is there a way through the Facebook API that I can discover the Facebook Pages that a user administers?

The method below seems to find all the FB Pages that person is a fan of (likes):

http://developers.facebook.com/docs/reference/rest/pages.getinfo#

+1  A: 

You can do this with FQL:

select page_id from page_admin where uid=me()

(can try it here)

serg
Thank You! I will try it.
sbtodd
@serg thanks for the answer. It worked!
sbtodd

related questions