简体   繁体   中英

Get all photos from posts on a Page

I have the necessary permissions from facebook. I am using RESTFB, I see the methods getFullPicture and getPicture in Post.class but unable to make anything out of it. How to get all the photos from a post on a page in FB, using RESTFB in Java.

GetFullPicture and getpicture are not meant to give all images. To get the images from a post we have to get the post ID. Post id is the combination of pageId and one of the photo's which user has uploaded in that post, that photos id.

Example:242343423_2423423423. So the second part is a photo id. Take that photoId and query for its album. 2423423423?fields=album . will give the albumId. Get all photos from that album. JobDone!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM