What is the Flickr API for uploading an image or image URL

I wanted to upload a picture from Flickr using the flicker API. I use OAuth for authentication.

When I searched on the site, I got an API called flickr.photos.getInfo . But it gives only the path to the page on which the image belongs.

Can someone tell me where can I get the API to get the actual image path?

+5
source share
3 answers

Oh, I got a response.

The API function is called flickr.photos.getSizes .

Very confusing names.

+11
source

URL-, , .

http://www.flickr.com/services/api/explore/flickr.photos.getRecent , :

url_sq, url_t, url_s, url_q, url_m, url_n, url_z, url_c, url_l, url_o

PS. , .

+5

Use the flickr.photos.getSizes API. When you call the method, you will get a link to this image (available with different sizes)

Use this link to download.

0
source

All Articles