flickrex v0.6.0 Flickrex.Rest View Source

Operations on Flickr REST Service.

Supports all methods listed in the Flickr API docs.

Prefer to use the Flickrex.Flickr modules instead of calling these functions directly.

Examples

operation = Flickrex.Rest.get("flickr.photos.getInfo", photo_id: id)
{:ok, resp} = Flickrex.request(operation)

Link to this section Summary

Types

Name of the Flickr API Method

Functions

Creates a GET operation for the Flickr API

Creates a POST operation for the Flickr API

Link to this section Types

Link to this type method() View Source
method() :: binary()

Name of the Flickr API Method

Link to this section Functions

Link to this function get(method, opts \\ []) View Source
get(method(), Keyword.t()) :: term()

Creates a GET operation for the Flickr API.

Link to this function post(method, opts \\ []) View Source
post(method(), Keyword.t()) :: term()

Creates a POST operation for the Flickr API.