Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Get Albums and Photos of specified albums using flickr api

Tags:

flickr

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?

like image 847
Ghazanfar Khan Avatar asked Dec 11 '14 22:12

Ghazanfar Khan


People also ask

Does Flickr have an API?

The Flickr API is available for non-commercial use by outside developers. Commercial use is possible by prior arrangement.

Are Flickr Albums public?

Flickr allows you to determine who can see your photos. Set any photo to public or private at any time. You can also make your photos available to friends, family, or friends & family, without sharing them publicly.


1 Answers

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

like image 137
David Gorsline Avatar answered Oct 04 '22 03:10

David Gorsline