flickrex v0.6.0 Flickrex.Flickr.Machinetags View Source

Link to this section Summary

Functions

Return a list of unique namespaces, optionally limited by a given predicate, in alphabetical order

Return a list of unique namespace and predicate pairs, optionally limited by predicate or namespace, in alphabetical order

Return a list of unique predicates, optionally limited by a given namespace

Fetch recently used (or created) machine tags values

Return a list of unique values for a namespace and predicate

Link to this section Types

Link to this section Functions

Link to this function get_namespaces(args \\ []) View Source
get_namespaces(args()) :: operation()

Return a list of unique namespaces, optionally limited by a given predicate, in alphabetical order.

This method does not require authentication.

Arguments

  • predicate - Limit the list of namespaces returned to those that have the following predicate.

  • per_page - Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.

  • page - The page of results to return. If this argument is omitted, it defaults to 1.

Link to this function get_pairs(args \\ []) View Source
get_pairs(args()) :: operation()

Return a list of unique namespace and predicate pairs, optionally limited by predicate or namespace, in alphabetical order.

This method does not require authentication.

Arguments

  • namespace - Limit the list of pairs returned to those that have the following namespace.

  • predicate - Limit the list of pairs returned to those that have the following predicate.

  • per_page - Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.

  • page - The page of results to return. If this argument is omitted, it defaults to 1.

Link to this function get_predicates(args \\ []) View Source
get_predicates(args()) :: operation()

Return a list of unique predicates, optionally limited by a given namespace.

This method does not require authentication.

Arguments

  • namespace - Limit the list of predicates returned to those that have the following namespace.

  • per_page - Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.

  • page - The page of results to return. If this argument is omitted, it defaults to 1.

Link to this function get_recent_values(args \\ []) View Source
get_recent_values(args()) :: operation()

Fetch recently used (or created) machine tags values.

This method does not require authentication.

Arguments

  • namespace - A namespace that all values should be restricted to.

  • predicate - A predicate that all values should be restricted to.

  • added_since - Only return machine tags values that have been added since this timestamp, in epoch seconds.

Link to this function get_values(args \\ []) View Source
get_values(args()) :: operation()

Return a list of unique values for a namespace and predicate.

This method does not require authentication.

Arguments

  • namespace - (required) The namespace that all values should be restricted to.

  • predicate - (required) The predicate that all values should be restricted to.

  • per_page - Number of photos to return per page. If this argument is omitted, it defaults to 100. The maximum allowed value is 500.

  • page - The page of results to return. If this argument is omitted, it defaults to 1.