Get Albums and Photos of specified albums using flickr api
Asked Answered
C

1

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?

Comprador answered 11/12, 2014 at 22:48 Comment(0)
A
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).

Alysonalysoun answered 12/12, 2014 at 14:25 Comment(2)
how to get the photoset id?Ammonify
The photoset id is in the album URL -flickr.com/photos/USERNAME/albums/PHOTOSET_IDMarcin

© 2022 - 2024 — McMap. All rights reserved.