I'm using FQL to retrieve all user posted attachments (photos) from the wall of a Facebook page I own. Everything works fine except that I'm missing some entries that are visible on the wall (Publicly). I thought that it might be a privacy setting from the users that posted the attachment, however, from one user who posted two photos, only one is visible in de FQL result.
This is the code i am using:
$query = 'SELECT post_id,permalink,attachment,likes FROM stream WHERE source_id=var_id AND actor_id!=var_id AND attachment.fb_object_type="photo" ORDER BY likes.count DESC LIMIT 25;';
$photos=file_get_contents("https://api.facebook.com/method/fql.query?query=".urlencode($query)."&format=json&access_token=".$facebook->getAccessToken());
var_id is the ID of the facebook page (so that photos uploaded by myself don't aren't retrieved).
getAccessToken() retrieves a valid token, I checked that.
P.S.: Sorry for my bad English (not my native language)
LIMIT 25in your query, I understand you perform the query multiple time with an appropriate offset to get the right results? If youORDER BY likes.countthan the order might be somewhat arbitrary. – julkiewicz Sep 24 '11 at 12:55