donamkkhanh
donamkkhanh

Reputation: 11

How to get all photos in specific Facebook album?

Can I get all photo in specify Facebook album by Graph API like this?

$facebook->api( '[album_id]/photos' );

Currently it only return 25 results with paging.

Thank you!

Upvotes: 1

Views: 857

Answers (2)

genesis
genesis

Reputation: 50966

You can, append ?limit=YOURLIMIT to that api call, but be sure it's not so high

Upvotes: 1

Anton Melnikov
Anton Melnikov

Reputation: 650

Try "[album_id]/photos?limit=100"

Upvotes: 2

Related Questions