我可以使用什么查询来获取某个域/appID 上 FB 评论最多的 URL?
我正在尝试显示网站上评论最多的故事,我可以使用什么查询来获取特定域或 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以此作为示例开始,然后逐步获取 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/