The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Flickr::API2::Photos

SYNOPSIS

See search() and by_id() methods below.

METHODS

by_id

Finds one photo by its id number.

eg. say $api->photos->by_id(3386874895)->title;

Search for photos, for eg:

my @photos = $flickr->photos->search(tags => 'kitten,pony');

For parameters, see:

http://www.flickr.com/services/api/flickr.photos.search.html

This returns an array of Flickr::API2::Photo objects.