资 源 简 介
Flickr::API::Rest is a simple Perl module for accessing the Flickr API.
Documentation is inline in POD format - do perldoc Flickr::API::Rest to see it
NB: make test will fail right now - I"ll fix that up some time. :-)
Synopsis
```
my $api_key = "api_key_here";
my $secret = "secret_here";
my $flickr = new Flickr::API::Rest($api_key, $secret);
# call flickr.photos.getContactsPhotos
my $args = {
count => 6,
single_photo => 1,
};
my $response = $flickr->flickr_photos_getContactsPhotos($args, 1);
# $response contains reference to hash containing parsed XML response
```