Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)

share|improve this question
You have LIMIT 25 in your query, I understand you perform the query multiple time with an appropriate offset to get the right results? If you ORDER BY likes.count than the order might be somewhat arbitrary. – julkiewicz Sep 24 '11 at 12:55
When I remove the limit, the problem still persists. Even without the whole WHERE clause, I'm still missing data – Teun Lassche Sep 24 '11 at 15:08

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.