I would like to get the full resolution of the images returned in each child attachment, but I only get one image url.
Here is my call to facebook graph:
$FB_graph_JSON = file_get_contents('https://graph.facebook.com/'.$FB_UserPageID.'/feed?limit=20&fields=from,full_picture,message,picture,child_attachments,object_id&'.$FB_fresh_token);
I can get the full picture for the posting itself, but not from the child attachments, the child picture's size is less then ideal for my application.
Is there a way to get the full resolution image back for the child ?