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

NAME

Flickr::API2::People

METHODS

findByEmail

Return a user's NSID, given their email address.

eg. $api->people->findByEmail('john.doe@example.com')

findByUsername

Return a user's NSID, given their username.

eg. $api->people->findByUsername('fakeuser')

getInfo

Get information about a user.

eg. $api->people->getInfo('12345678@N00');

or $api->people->findByUsername('fakeuser')->getInfo;

getPublicPhotos

Get a list of public photos for the given user.

eg. $api->people->getPublicPhotos('12345678@N00')

or $api->people->findByUsername('foobar')->getPublicPhotos( per_page => 10 )

See http://www.flickr.com/services/api/flickr.people.getPublicPhotos.html for options.