可以获取评论框的开放图形数据吗?

发布于 2024-09-24 19:25:53 字数 386 浏览 4 评论 0原文

是否可以使用 Facebook 评论小部件获取评论列表,或者至少统计网站上留下的评论数量?

我正在使用的小部件放置在 iFrame Facebook 应用程序中。

这是 Facebook Javascript API 正在解析的 XFBML:

<fb:comments xid="fbtest"></fb:comments>

xid 参数与它有什么关系吗?据我所知,没有其他可能的参数。如何查询开放图谱网址 (http://graph.facebook.com/QUERY)访问这个对象?

Is it possible to get a list of comments, or at least a count of the number of comments that have been left on a website with the Facebook comments widget?

The widget I am using is placed inside an iFrame Facebook application.

Here is the XFBML which is being parsed by the Facebook Javascript API:

<fb:comments xid="fbtest"></fb:comments>

Would the xid parameter have anything to do with it? As far as I can tell, there are no other possible parameters. How would one query the open graph url (http://graph.facebook.com/QUERY) to access this object?

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

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

发布评论

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

评论(1

没有你我更好 2024-10-01 19:25:53

您可以使用 FQL 来执行此操作:

select post_id, text from comment where xid="fbtest"

请参阅评论桌子

You can do this with FQL:

select post_id, text from comment where xid="fbtest"

see comment table

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