如果我进行查询https://graph.facebook.com/[post_id]/comments
,那么facebook会在其数据数组中返回多少条评论?
同样,feed
,likes
和其他“变量”关联的默认数量是多少?
我无法在任何地方找到相关文档,有时我看到25的限制,有时我看到限制为5000(等)。如果有人在这种情况下指出我的文档,我会很高兴。
答案 0 :(得分:2)
如果您在没有限制的情况下致电https://graph.facebook.com/[post_id]/comments
,默认情况下会返回最多25个结果,并在数组底部进行分页。
您可以使用限制覆盖默认值,因为&直到参数
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.