Flickrex.Flickr.Photos.Upload (flickrex v0.8.1) View Source

Link to this section Summary

Functions

Checks the status of one or more asynchronous photo upload tickets.

Link to this section Types

Link to this section Functions

Link to this function

check_tickets(tickets, opts \\ [])

View Source

Specs

check_tickets(arg(), opts()) :: operation()

Checks the status of one or more asynchronous photo upload tickets.

This method does not require authentication.

Arguments

  • tickets - A comma-delimited list of ticket ids

Example response

%{
  "stat" => "ok",
  "uploader" => %{
    "ticket" => [
      %{"complete" => "1", "id" => "128", "photoid" => "2995"},
      %{"complete" => "0", "id" => "129"},
      %{"complete" => "2", "id" => "130"},
      %{"id" => "131", "invalid" => "1"}
    ]
  }
}