我正试图从相册文件夹中获得最后7张更新的图片。我使用了reverse_chronological和时间序列,但它不起作用。根据时间更新,我必须对图像进行排序。
https://graph.facebook.com/{albumid}/photos?&field=id,created_time.order(reverse_chronological),description&limit=7&access_token={zxczczxczx}发布于 2016-03-04 17:02:49
查看围绕定序的文档,这种格式应该可以工作:
https://graph.facebook.com/{album-id}/?fields=photos.order(reverse_chronological)你能试试吗?
https://stackoverflow.com/questions/35499896
复制相似问题