1

I'd like to know if there's a way to request a page's feed and also the pictures in each post. Getting each one separately isn't hard:

  • PAGE_ID?fields=id,name,cover,fan_count,posts
  • POST_ID?fields=full_picture

I've tried using batch. I wasn't able to get both in one request, I ended up with only the photos but not the posts (data) associated with.

nathan
  • 9,329
  • 4
  • 37
  • 51

1 Answers1

0

Found a way to do it, thanks to https://stackoverflow.com/a/27524411/2124535

Graph API request:

  • PAGE_ID/posts?fields=picture,full_picture,attachments,description,message

or even simpler:

  • PAGE_ID/posts?fields=full_picture,message
Community
  • 1
  • 1
nathan
  • 9,329
  • 4
  • 37
  • 51