Why not adopt me?
This distribution is up for adoption!
If you're interested then please contact the PAUSE module admins via
email.
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.