1Flickr::API::ReflectionU(s3e)r Contributed Perl DocumentaFtliiocnkr::API::Reflection(3)
2
3
4
6 Flickr::API::Reflection - An interface to the flickr.reflection.*
7 methods.
8
10 use Flickr::API::Reflection;
11
12 my $api = Flickr::API::Reflection->new({'consumer_key' => 'your_api_key'});
13
14 or
15
16 my $api = Flickr::API::Reflection->import_storable_config($config_file);
17
18 my @methods = $api->methods_list();
19 my %methods = $api->methods_hash();
20
21 my $method = $api->get_method('flickr.reflection.getMethodInfo');
22
24 This object encapsulates the flickr reflection methods.
25
26 "Flickr::API::Reflection" is a subclass of Flickr::API, so you can
27 access all of Flickr's reflection goodness while ignoring the nitty-
28 gritty of setting up the conversation.
29
31 "methods_list"
32 Returns an array of Flickr's API methods.
33
34 "methods_hash"
35 Returns a hash of Flickr's API methods.
36
37 "get_method"
38 Returns a hash reference to a description of the method from
39 Flickr.
40
42 Copyright (C) 2015, Louis B. Moore
43
44 This program is released under the Artistic License 2.0 by The Perl
45 Foundation.
46
48 Flickr::API. Flickr <http://www.flickr.com/>,
49 <http://www.flickr.com/services/api/>
50 <https://github.com/iamcal/perl-Flickr-API>
51
52
53
54perl v5.38.0 2023-07-20 Flickr::API::Reflection(3)