1Flickr::API::People(3)User Contributed Perl DocumentationFlickr::API::People(3)
2
3
4
6 Flickr::API::People - Perl interface to the Flickr API's
7 flickr.people.* methods.
8
10 use Flickr::API::People;
11
12 my $api = Flickr::API::People->new({'consumer_key' => 'your_api_key'});
13
14 or
15
16 my $api = Flickr::API::People->import_storable_config($config_file);
17
19 This object encapsulates the flickr people methods.
20
21 "Flickr::API::People" is a subclass of Flickr::API, so you can access
22 Flickr's people information easily.
23
25 findByEmail()
26 Populates user info with that found for the given email
27
28 findByUsername()
29 Populates user info with that found for the given username
30
31 perms()
32 Returns the permission returned by checking this supplied token
33
34 "perms_caller"
35 Returns the username for which the permission applies
36
37 "perms_token"
38 Returns the token for which the permission applies
39
40 "perms_nsid"
41 Returns the nsid for which the permission applies
42
43 nsid()
44 Returns the nsid of the supplied mail or username
45
46 username()
47 Returns the username of the supplied mail or username
48
50 Copyright (C) 2015-2016, Louis B. Moore
51
52 This program is released under the Artistic License 2.0 by The Perl
53 Foundation.
54
55 Original version was Copyright (C) 2005 Nuno Nunes,
56 "<nfmnunes@cpan.org>" This version is much changed and built on the
57 Flickr::API as it appears in 2015. Many thanks to Nuno Nunes for
58 getting this ball rolling.
59
61 Flickr::API. Flickr <http://www.flickr.com/>,
62 <http://www.flickr.com/services/api/>
63 <https://github.com/iamcal/perl-Flickr-API>
64
65
66
67perl v5.38.0 2023-07-20 Flickr::API::People(3)