我正在尝试从用户的信息流中获取最后 10 个帖子。出于某种原因,我的 FQL 查询将连续返回每个帖子中的两个。这是我的代码,请原谅 CoffeeScript,
method = 'fql.multiquery'
queries = 'feed' : "SELECT attachment , type , created_time , filter_key, actor_id, description, message FROM stream WHERE (filter_key = 'others' OR filter_key = 'owner') ORDER BY created_time DESC LIMIT 10"
params =
method : method
queries : queries
FB.api (params) , (response) =>
#and so on
我不太确定为什么会这样。