flickrex v0.3.0 Flickrex.URL

Generate Flickr URLs for photos, profiles, and photostreams

Summary

Types

A photo returned by the Flickr API

Functions

URL for Medium size photo

URL for Large size photo

URL for Small size photo

URL for Original size photo

URL for individual photo page

URL for individual photo set

URL for user photo sets

URL for user photostream

URL for user profile

URL for Square size photo

URL for Thumbnail size photo

URL for Medium 640 size photo

Types

photo()
photo() :: map

A photo returned by the Flickr API

Examples

{:ok, info} = Flickr.Photos.get_info(client, photo_id: photo_id)
photo = info["photo"]
medium_url = Flickrex.URL.url(photo)

Functions

url(r)
url(photo) :: binary

URL for Medium size photo

url_b(r)
url_b(photo) :: binary

URL for Large size photo

url_m(r)
url_m(photo) :: binary

URL for Small size photo

url_o(r)
url_o(photo) :: binary

URL for Original size photo

url_photopage(user_id, photo_id)
url_photopage(String.t, String.t) :: String.t

URL for individual photo page

url_photoset(user_id, photoset_id)
url_photoset(String.t, String.t) :: String.t

URL for individual photo set

url_photosets(user_id)
url_photosets(String.t) :: String.t

URL for user photo sets

url_photostream(user_id)
url_photostream(String.t) :: String.t

URL for user photostream

url_profile(user_id)
url_profile(String.t) :: String.t

URL for user profile

url_s(r)
url_s(photo) :: binary

URL for Square size photo

url_t(r)
url_t(photo) :: binary

URL for Thumbnail size photo

url_z(r)
url_z(photo) :: binary

URL for Medium 640 size photo