Facebook 仅返回 25 张照片

发布于 2025-01-04 18:38:33 字数 191 浏览 0 评论 0原文

我在使用超过 25 张照片的相册时遇到一些问题... 我的代码是:

$albumPictures = $facebook->api('/' . $album .'/photos','GET');

但是如果我查看 $albumPictures 我只发现 25 张照片...... 有人可以帮我吗?

I have some problems with album with more than 25 photos...
my code is:

$albumPictures = $facebook->api('/' . $album .'/photos','GET');

but if I look into $albumPictures I find only 25 photos...
can anyone help me please?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

只是在用心讲痛 2025-01-11 18:38:33

您是否忘记翻到下一页?

Graph API 响应中有一个 paging 条目,其中包含 nextprevious 网址,用于检索其余照片(假设有超过 25 张照片)在相册中 - 默认查询为 25 张照片)

您也可以通过调用 /ALBUM_ID/photos?limit=200 在单个请求中询问所有照片

Have you forgotten to paginate to the next page?

There's a paging entry in the Graph API response with next and previous urls to retrieve the rest of the photos (assuming there were more than 25 photos in the album - the default query is 25 photos)

You could also just ask for all photos in a single request by calling /ALBUM_ID/photos?limit=200

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