Facebook的评论框:FQL为“总评论和回复”中评论

问题描述:

我目前使用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查询可计算评论+回复?

+0

一位朋友点http://api.facebook.com/method/links.getStats?urls=http://www.mediauk.com/radio/discussions/radio -chatter/virgin-buys-absolute-radio这是非常有用的,但不幸的是,仍然只给出了总评论数字,而不是评论+回复。任何其他帮助非常欢迎。 – jamescridland

试试这个:

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/')) 
+0

谢谢。我发现了这个机制。 – jamescridland