user1202494
user1202494

Reputation: 45

Facebook returns only 25 photos

I have some problems with album with more than 25 photos... my code is:

$albumPictures = $facebook->api('/' . $album .'/photos','GET');

but if I look into $albumPictures I find only 25 photos... can anyone help me please?

Upvotes: 2

Views: 1530

Answers (1)

Igy
Igy

Reputation: 43816

Have you forgotten to paginate to the next page?

There's a paging entry in the Graph API response with next and previous urls to retrieve the rest of the photos (assuming there were more than 25 photos in the album - the default query is 25 photos)

You could also just ask for all photos in a single request by calling /ALBUM_ID/photos?limit=200

Upvotes: 10

Related Questions