Reputation: 631
I am able to fetch my page feeds by graph api. But the only problem is the pictures
The feeds contain more than 1 pictures however the graph api only return 1 picture for me. How can I fetch all the pictures for the feeds?
thanks
ps.
i fetch the feeds by this api:
https://graph.facebook.com/[page_id]/feed?access_token=[access_token]
Upvotes: 2
Views: 11433
Reputation: 631
Finally I get all the photos of a post by this graph api:
https://graph.facebook.com/v2.2/#{fb_post_id}?fields=attachments&access_token=#{access_token}
Upvotes: 12
Reputation: 15
You need to get attachments by doing this
https://graph.facebook.com/v.2.2/[page_id]/posts?attachments&access_token=[AppID]|[AppSecret]
All the images is in the attachments
Upvotes: -1