8

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?

Ghazanfar Khan
  • 3,648
  • 8
  • 44
  • 89

1 Answers1

12

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).

David Gorsline
  • 4,933
  • 12
  • 31
  • 36