Facebook 仅返回 25 张照片
我在使用超过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否忘记翻到下一页?
Graph API 响应中有一个
paging
条目,其中包含next
和previous
网址,用于检索其余照片(假设有超过 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 withnext
andprevious
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