logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Flickr::API::Reflection - An interface to the flickr.reflection.* methods.

Description

       This 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.

Name

       Flickr::API::Reflection - An interface to the flickr.reflection.* methods.

See Also

       Flickr::API.         Flickr        <http://www.flickr.com/>,        <http://www.flickr.com/services/api/>
       <https://github.com/iamcal/perl-Flickr-API>

perl v5.40.1                                       2025-05-04                       Flickr::API::Reflection(3pm)

Subroutines/Methods

       "methods_list"
           Returns an array of Flickr's API methods.

       "methods_hash"
           Returns a hash of Flickr's API methods.

       "get_method"
           Returns a hash reference to a description of the method from Flickr.

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');

See Also