获取我从 fb:comments 网站发表的所有评论
我正在寻找一种方法来获取我发表的所有评论。
现在我可以在我的留言墙上和其他人的留言墙上发表评论。我正在寻找的是我在任何 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
就这样:
每个 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