I am using the Facebook Graph API to get my wall posts and process those results into my db. I have been able to get everything working except when a user posts a comment to a post with an image, that image url does not appear in my results and I can't figure out what I am missing. The image below is pointing to the comment that has an image in the comment, but its not listed.
Here is my GET call in php
file_get_contents("https://graph.facebook.com/$get_facebook/feed?access_token=$facebook_accesstoken&client_id=$facebook_appid&client_secret=$facebook_appsecret&metadata=1&fields=id,status_type,created_time,from,message,comments,picture,link,icon,parent");
Does anyone know why that image url is not showing in my results?
Image seen in comment
Graph API results with no image