I'm using the Facebook Graph API v2.8 to get a page feed like this:
/page-id/posts?fields=attachments{media,title},id,message...
If a post has attachments I want my request to return the full size image for each attachment in the attachments.media.image path. Currently it only returns a square image in standard size (380x380px to max 720x720px).
Is there any way to further specify the query to achieve this? Something like:
fields=attachments{media{image.type(full)},title]},id....
If possible I don't want to make another request to the media/object endpoint.
PS: The url in the current response points to a php service and has a width and a height parameter in it which can be left out to get the full size image.
https://external.xx.fbcdn.net/safe_image.php?d=AQAkZcYtE-TiVzTj&w=542&h=542&url=fbstaging%3A%2F%2Fgraph.facebook.com%2Fstaging_resources%2FMDExMDE1NDcxNzI3Njg3Mjc2MDoxMjE3ODEyMjE%3D&cfs=1&sx=104&sy=0&sw=542&sh=542&l
However since there is also a hash in that URL I really don't want to do regex stuff to remove the width and height parameter of the response image url to get the fullsize image.
Edit: Also I can't really use the full_picture field, since it will only give me the URL for the first (main) attachment. I'm looking for the media URLs of all attachments.