flickrex v0.3.0 Flickr.Urls

Summary

Functions

Returns the url to a group’s page

Returns the url to a user’s photos

Returns the url to a user’s profile

Returns gallery info, by url

Returns a group NSID, given the url to a group’s page or photo pool

Returns a user NSID, given the url to a user’s photos or profile

Types

args()
args() :: Keyword.t
client()
client() :: Flickrex.Client.t
response()
response() :: Flickrex.Parser.response

Functions

get_group(client, args \\ [])
get_group(client, args) :: response

Returns the url to a group’s page.

This method does not require authentication.

Arguments

  • group_id - (required) The NSID of the group to fetch the url for.
get_user_photos(client, args \\ [])
get_user_photos(client, args) :: response

Returns the url to a user’s photos.

This method does not require authentication.

Arguments

  • user_id - The NSID of the user to fetch the url for. If omitted, the calling user is assumed.
get_user_profile(client, args \\ [])
get_user_profile(client, args) :: response

Returns the url to a user’s profile.

This method does not require authentication.

Arguments

  • user_id - The NSID of the user to fetch the url for. If omitted, the calling user is assumed.
lookup_gallery(client, args \\ [])
lookup_gallery(client, args) :: response

Returns gallery info, by url.

This method does not require authentication.

Arguments

  • url - (required) The gallery’s URL.
lookup_group(client, args \\ [])
lookup_group(client, args) :: response

Returns a group NSID, given the url to a group’s page or photo pool.

This method does not require authentication.

Arguments

  • url - (required) The url to the group’s page or photo pool.
lookup_user(client, args \\ [])
lookup_user(client, args) :: response

Returns a user NSID, given the url to a user’s photos or profile.

This method does not require authentication.

Arguments

  • url - (required) The url to the user’s profile or photos page.