如何获得提及粉丝页面的公共帖子的评论和点赞
我正在查询 fql 流表以获取粉丝页面的所有帖子。页面墙上的帖子之一是写在用户墙上的帖子,但其中提到了页面。
示例: http://www.facebook.com/jeff.judge/posts/10150356144351153
该帖子的 fql 响应中返回的帖子 ID 为156834651009457_271264652899789。现在,如果我在流表中查询此 post_id,我将返回空数组以获取评论和点赞。如何正确获取这篇文章的评论和点赞?这是一个公开帖子,所以我想我应该能够获得评论/喜欢?
I am querying the fql stream table to get all the posts for a fan page. One of the post on the page wall is a post which was written on user's wall but had the page mentioned in it.
Example: http://www.facebook.com/jeff.judge/posts/10150356144351153
The post id returned in fql response for this post is 156834651009457_271264652899789. Now if I query the stream table for this post_id, I am getting back empty array for comments and likes. How do I correctly fetch the comments and likes for this post? It is a public post, so I am guessing I should be able to get the comment/likes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不明白为什么评论列表是空的,但有一种方法可以填充列表。将
actor_id
与墙上使用的帖子“id”连接起来:并查询该
post_id
。I don't understand why the comments list is empty, but there is a way to get the list populated. Concatenate the
actor_id
with the post "id" used on the wall:And query for that
post_id
instead.