我的 Facebook 页面喜欢的页面

发布于 2024-11-16 13:25:49 字数 164 浏览 2 评论 0原文

在 Facebook 中,如果我是页面管理员,我可以选择在帐户 -> 下使用该网站“作为页面”。使用 Facebook 作为主页。当这样做时,我“喜欢”了其他一些页面。

我的问题:有没有办法获取我的页面(而不是我的帐户)喜欢的页面列表。有没有办法通过 Facebook API 来做到这一点?

In Facebook if I am an admin of a page I can select to use the site "as page" under Account -> Use Facebook as Page. When doing so I "liked" some other pages.

My question: is there a way to get list of pages that were liked by my page (not my account). Is there a way to do it via Facebook API?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南风起 2024-11-23 13:25:49

找到了解决方案,将其发布在这里,以防其他人需要它。

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")

Found the solution, posting it here in case someone else needs it.

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")

the request must be authenticated, so here is the whole request:

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")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文