Search code examples
flickr

Get Albums and Photos of specified albums using flickr api


I want to get photos from albums which I have on flickr . I have 4 albums . Curently I am doing flickr.people.getPublicPhotos method which returns all photos . Here is my url

https://api.flickr.com/services/rest/?method=flickr.people.getPublicPhotos&api_key=[]&user_id=[]&format=json";

How do I get photos via albums of flickr is it possible?


Solution

  • You can use flickr.photosets.getPhotos. Pass the ID of your photoset; receive a list of the photos in that photoset (their IDs and titles).