The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

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.