Facebook评论框:FQL代表;评论和答复总数”;评论

Facebook评论框:FQL代表;评论和答复总数”;评论,facebook,facebook-fql,Facebook,Facebook Fql,我目前正在使用 select time from comment where object_id in (select comments_fbid from link_stat where url ='http://www.example.com/post/') ORDER BY time DESC 为了发现这篇文章有多少评论(我只是简单地计算一下这里的回复)。当然,这并没有列出回复的数量 是否有一个等效的FQL查询可以计算评论+回复数?尝试以下操作: select time from co

我目前正在使用

select time from comment
where object_id in
 (select comments_fbid from link_stat where url ='http://www.example.com/post/')
ORDER BY time DESC
为了发现这篇文章有多少评论(我只是简单地计算一下这里的回复)。当然,这并没有列出回复的数量

是否有一个等效的FQL查询可以计算评论+回复数?

尝试以下操作:

select time from comment where 
object_id in 
  (select comments_fbid from link_stat where url ='http://www.example.com/post/') 
or object_id in 
  (select post_fbid from comment where object_id in (select comments_fbid from link_stat where url ='http://www.example.com/post/'))

一位朋友指出,这是非常有用的,但不幸的是,仍然只给出总评论数,而不是评论+回复。非常欢迎任何其他帮助。谢谢。我发现了这个机制。