我正在尝试获取用户配置文件中的照片。我试着使用https://graph.facebook.com/me/photos,但它只返回带标签的照片。我可以得到所有相册中的所有照片吗?
发布于 2010-10-12 00:44:49
您正在使用错误的API终结点,您需要albums endpoint。
https://graph.facebook.com/me/albums
在API页面中:
相册照片标签:https://graph.facebook.com/me/photos
然后,您可以调用https://graph.facebook.com/ALBUM_ID/photos。
https://stackoverflow.com/questions/3908196
复制相似问题