1

如果我进行查询https://graph.facebook.com/[post_id]/comments,facebook 会在其数据数组中返回多少条评论?

feed同样,likes和其他“变量”连接的默认编号是多少?

我在任何地方都找不到这方面的文档,有时我看到限制为 25,有时我看到限制为 5000(等等)。如果有人能指出我在这种情况下的文档,我会很高兴。

4

1 回答 1

2

如果您https://graph.facebook.com/[post_id]/comments无限制地调用,默认情况下将返回最多 25 个结果,并在数组底部进行分页。

您可以使用 limit 覆盖默认值,因为 & until 参数

https://graph.facebook.com/[post_id]/comments?limit=250
// returns 250 results

https://graph.facebook.com/[post_id]/comments?limit=500&since=2+years+ago&until=now
// returns upto 500 posts, ranging back to 2 years ago, until right now.

https://graph.facebook.com/[post_id]/comments?since=last+week&until=yesterday
// returns upto 25 posts ranging from last week, until yesterday.

参考https://developers.facebook.com/docs/reference/api/

于 2012-04-13T15:07:49.713 回答