Facebook API如何在没有分页的情况下获取我喜欢的所有页面
问题描述:
如果我喜欢100个以上的页面/事物,则FB.API('me/likes')返回99个项目以及指向下一页的链接.
If I like more than 100 pages/things, FB.API('me/likes') returns 99 items and a link to the next paging.
是否可以不通过分页获取全部内容?
Is it possible to get ALL without the pagination?
谢谢
答
您是否尝试过/me/likes?limit=999
?
您可能仍需要进行分页,但是一次调用应该可以获取99多个项目
Have you tried /me/likes?limit=999
?
You may still need to paginate, but you should be able to get more than 99 items in a single call