|
NAMEFlickr::API::Reflection - An interface to the flickr.reflection.* methods. SYNOPSIS use Flickr::API::Reflection;
my $api = Flickr::API::Reflection->new({'consumer_key' => 'your_api_key'});
or my $api = Flickr::API::Reflection->import_storable_config($config_file);
my @methods = $api->methods_list();
my %methods = $api->methods_hash();
my $method = $api->get_method('flickr.reflection.getMethodInfo');
DESCRIPTIONThis object encapsulates the flickr reflection methods. "Flickr::API::Reflection" is a subclass of Flickr::API, so you can access all of Flickr's reflection goodness while ignoring the nitty-gritty of setting up the conversation. SUBROUTINES/METHODS
LICENSE AND COPYRIGHTCopyright (C) 2015, Louis B. Moore This program is released under the Artistic License 2.0 by The Perl Foundation. SEE ALSOFlickr::API. Flickr <http://www.flickr.com/>, <http://www.flickr.com/services/api/> <https://github.com/iamcal/perl-Flickr-API>
|