0

我已经使用以下代码很长一段时间了,通过Facebook FQL检索我的评论+评论回复计数总数。但是,今天它只是停止工作,现在正在返回一个空数组。我想我已经追踪到FB没有为给定的URL返回comments_fbid的事实。FQL查询comments_fbid突然返回null

select time, is_private from comment where is_private = 0 and object_id in 
(select comments_fbid from link_stat where url ='MY_URL') or 
is_private = 0 and object_id in (select post_fbid from comment where object_id 
in (select comments_fbid from link_stat where url ='MY_URL')) 

该请求通常将与length等于总评论计数返回对象。

任何帮助将不胜感激。

+0

此问题是由FQL的错误引起的。 http://developers.facebook.com/bugs/317008698404331 –

回答