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 can bring back photos from an album just fine using the graph API but can only bring back data for the first 25 images. Is there a way to bring back more than 25 records or to use an offset and start at record number 25?

Hope this makes sense. Thanks in advance.

share|improve this question

1 Answer

up vote 3 down vote accepted

$fb->api("/$albumID/photos?limit=400&offset=0");

See 'Paging' on http://developers.facebook.com/docs/reference/api/

share|improve this answer
1  
Additionally just to retrieve all items set limit=0. Thanks! – Duane Sep 15 '11 at 16:34

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.