获取我从 fb:comments 网站发表的所有评论

发布于 2024-12-10 06:15:37 字数 550 浏览 0 评论 0原文

我正在寻找一种方法来获取我发表的所有评论。

现在我可以在我的留言墙上和其他人的留言墙上发表评论。我正在寻找的是我在任何 fb:comments 网站上发表的任何评论。

理想的情况是使用“WHERE fromid = me()”在评论表上创建 FQL 查询。

SELECT fromid, text, username, text, comments FROM comment WHERE fromid = me();

http://developers.facebook.com/docs/reference/fql/comment/

但这不起作用,因为 fromid 字段不可索引。

如果我有要发布的页面的 URL,上面链接中的第二个示例为我提供了一种执行此操作的方法。

但我想要在我发布的任何页面上。

有什么建议吗? 谢谢

I'm looking for a way to get all comments made by me.

Right now I can get comments to my Wall and other people's walls. What I'm looking for is any Comments made by me on any fb:comments site.

The ideal would be to create a FQL query on the comments table with a "WHERE fromid = me()".

SELECT fromid, text, username, text, comments FROM comment WHERE fromid = me();

http://developers.facebook.com/docs/reference/fql/comment/

This doesn't work however because the fromid field is not indexable.

The 2nd example in the link above gives me a way to do this if I have the URL of the page I'm posting on.

But I want on ANY page I've posted on.

Any advice?
Thanks

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

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

发布评论

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

评论(1

夜灵血窟げ 2024-12-17 06:15:37

就这样:
每个 URL 的评论都可以通过图形 API 访问。只需访问:https://graph.facebook.com/comments/?ids=% YOUR_URL%

希望有帮助,
卢卡

There you go:
The comments for every URL can be accessed via the graph API. Simply go to: https://graph.facebook.com/comments/?ids=%YOUR_URL%

Hope it helps,
Luca

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