获取所有 Facebook 相册

发布于 2024-10-09 01:30:50 字数 440 浏览 3 评论 0原文

直到最近,大约 30 分钟前才发现,当我的应用程序调用 https://graph.facebook.com//albums?access_token= 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

几度春秋 2024-10-16 01:30:50

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文