获取所有 Facebook 相册
直到最近,大约 30 分钟前才发现,当我的应用程序调用 https://graph.facebook.com/
Facebook 会返回用户的所有相册。现在,它只给出 25。
我尝试将以下参数添加到 url 中:&cursor=#
&c=#
&page=#
&p=#
&index=#
&i=#
&start=#
&s=#
那么问题来了,我如何获得其余的专辑?
Up until recently, just found out about 30 mins ago, when my app would call https://graph.facebook.com/<user_id>/albums?access_token=<token>
Facebook would return all of the User's photo albums. Now, it is just giving 25.
I've tried adding the follow params to the url:&cursor=#
&c=#
&page=#
&p=#
&index=#
&i=#
&start=#
&s=#
So the question, how do I get the rest of the albums?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Graph API 对它返回的内容进行分页。返回的 JSON 数组中有一个名为
paging
的属性,其中包含下一页和上一页的 URL。您应该能够通过导航到您所提供的 URL 来查看它,例如 https://graph。 facebook.com/facebook/albums
The Graph API paginates what it returns. There is property in the JSON array returned called
paging
, which contains the URLs of the next and previous pages.You should be able to see it by navigating to a URL such as what you gave, eg https://graph.facebook.com/facebook/albums