I want to list photos from flickr account using flickr.photos API using PHP with OAuth.
Right now to get the URLs of the images I am doing it in 2 steps which makes too many requests to the API and takes too much time:
- First I request the photos using
flickr.photos.search
- then I loop the array of results and call the
flickr.photos.getInfo
for each photo apart. [result offlickr.photos.search
] does not return URL of images, but getInfo does.
Is there a way to get the images with one single request?
Thanks!