在Facebook FQL中为流提供多个ID

时间:2014-05-08 07:12:08

标签: facebook facebook-graph-api facebook-fql

select post_id, message from stream where source_id IN (..., ..., ...) LIMIT 500

我正在使用这个fql查询,但它只返回了几个帖子。虽然以下查询返回的帖子超过200个。

select post_id, message from stream where source_id = ... LIMIT 500

但是给同一个id与其他id返回4到5个帖子。

我知道v2.0中没有fql支持,但我仍然希望使用fql。

1 个答案:

答案 0 :(得分:1)

这看起来很奇怪......您是否尝试通过纯Graph API执行此操作?您使用什么类型的对象source_id

GET /?ids={object_id_1},{object_id_2},{object_id_3}&fields=feed.fields(id,message).limit(100)