How can my application find the Facebook Pages that a user administers?
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#
You can do this with FQL:
select page_id from page_admin where uid=me()
(can try it here)
精彩评论