我可以使用什么查询来获取某个域/appID 上 FB 评论最多的 URL?

发布于 2025-01-06 19:28:09 字数 81 浏览 0 评论 0原文

我正在尝试显示网站上评论最多的故事,我可以使用什么查询来获取特定域或 appID 上 Facebook 评论最多的 URL?

谢谢!

I'm trying to display the most commented stories on a site, what query can I use to get URLs with the most Facebook comments on a certain domain or appID?

Thanks!

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

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

发布评论

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

评论(1

绮烟 2025-01-13 19:28:09

以此作为示例开始,然后逐步获取 appId

fql?q=SELECT post_id, Attachment.href, comments.count FROM Stream WHERE source_id=me() AND type=80 ORDER BY comments 的 流项目.count DESC LIMIT 500

请参阅:https://developers.facebook.com/docs/reference/fql/stream/

Start with this as an example and work your way into getting the stream items for the appId

fql?q=SELECT post_id, attachment.href, comments.count FROM stream WHERE source_id=me() AND type=80 ORDER BY comments.count DESC LIMIT 500

See: https://developers.facebook.com/docs/reference/fql/stream/

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