在Facebook中,如果我是某个页面的管理员,我可以选择在“帐户”下使用该“网页” - >使用Facebook作为页面。这样做时,我“喜欢”其他一些页面。
我的问题:有没有办法获取我的网页(不是我的帐户)所喜欢的网页列表。有没有办法通过Facebook API来实现?
答案 0 :(得分:1)
找到解决方案,将其发布在此处以防其他人需要它。
FQL:
select name,page_id from page where page_id in (select target_id from connection where source_id=MY_PAGE_ID and target_type="Page")
请求必须经过身份验证,因此以下是整个请求:
https://api.facebook.com/method/fql.query?access_token=MY_ACCESS_TOKEN&query=select name,page_id from page where page_id in (select target_id from connection where source_id=MY_PAGE_ID and target_type="Page")