使用图表对 Facebook 相册照片进行排序 Api
Sorting facebook album photos using graph Api
我正在尝试从相册文件夹中获取最近 7 个更新的图像。我使用 reverse_chronological 以及时间顺序,但它不起作用。根据时间更新,我必须对图像进行排序。
https://graph.facebook.com/{albumid}/photos?&field=id,created_time.order(reverse_chronological),description&limit=7&access_token={zxczczxczx}
查看有关 ordering 的文档,这种格式应该有效:
https://graph.facebook.com/{album-id}/?fields=photos.order(reverse_chronological)
你能试试吗?
我正在尝试从相册文件夹中获取最近 7 个更新的图像。我使用 reverse_chronological 以及时间顺序,但它不起作用。根据时间更新,我必须对图像进行排序。
https://graph.facebook.com/{albumid}/photos?&field=id,created_time.order(reverse_chronological),description&limit=7&access_token={zxczczxczx}
查看有关 ordering 的文档,这种格式应该有效:
https://graph.facebook.com/{album-id}/?fields=photos.order(reverse_chronological)
你能试试吗?