facebook graph api 在 feed 中只获取一张图片
我正在使用 facebook graph api 开发一个应用程序。
当我在 Facebook 上创建包含三张以上图片的相册时,我的墙上帖子会显示三张缩略图,但当我在图形 api 中检查提要时,它只提供一张图像的链接。
我查看了类似的网站,他们也显示了三个像 Facebook 一样的图像,不知道如何做到这一点。
I am developing an app using the facebook graph api.
When I create an album with more than three pictures on facebook, on my wall post it displays three thumbnail images, but when I check in the feeds in the graph api, it only gives link to one image.
I checked out similar websites, and they also display three images like facebook not sure how to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你应该将照片上传到特定的相册中,为此你可以使用
https://graph.facebook.com/facebook_d/albums
这将返回带有 album_id 的所有相册详细信息,使用该相册 id 您可以通过以下方式获取该相册中的照片
https://graph.facebook.com/album_id/photos。
I think you are supposed to get the photos uploaded in a particular album,for that you can use
https://graph.facebook.com/facebook_d/albums
this will return all album details with album_id,using that album id you can fetch the photos in that album by
https://graph.facebook.com/album_id/photos.