• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/Net/H21-Jun-2008-18379

t/H21-Jun-2008-135

MANIFESTH A D21-Jun-2008159 98

MANIFEST.SKIPH A D23-Apr-20085 21

META.ymlH A D21-Jun-2008435 1412

Makefile.PLH A D21-Jun-2008398 1613

READMEH A D23-Apr-20081.6 KiB5339

wpfindH A D29-May-20083.6 KiB141110

README

1NAME
2    Net::WhitePages - A Perl interface to the WhitePages.com API
3
4SYNOPSIS
5        use Net::WhitePages;
6
7        my $wp = Net::WhitePages->new(TOKEN => "12345");
8        my $res = $wp->find_person(lastname => "Wall", firstname => "Larry");
9
10DESCRIPTION
11    "Net::WhitePages" provides a simple perl wrapper for the whitepages.com
12    API (see http://developer.whitepages.com/ for details). The interface
13    matches the API exactly; see http://developer.whitepages.com/docs for a
14    description of it.
15
16    You'll need to have a whitepages.com API token to function; see
17    http://developer.whitepages.com/ for a sign-up link and terms of
18    service.
19
20    WhitePages.com places strict usage limitations, which this module does
21    not attempt to enforce.
22
23METHODS
24    find_person
25        Search by a person's name and location to find the person's complete
26        address and phone number. See
27        http://developer.whitepages.com/docs/Methods/find_person for more
28        details.
29
30    reverse_phone
31        Search by phone number to find the related name and address. See
32        http://developer.whitepages.com/docs/Methods/reverse_phone for
33        details.
34
35    reverse_address
36        Search by street address to find the related name and phone number.
37        See http://developer.whitepages.com/docs/Methods/reverse_address for
38        details.
39
40    Each method returns a serialized version of the results data; see
41    http://developer.whitepages.com/docs/docs/Responses/Results_Response for
42    details on it looks like.
43
44BUGS
45    Please report bugs via the RT queue at https://rt.cpan.org/.
46
47VERSION
48    1.0
49
50AUTHOR
51    Darren Chamberlain <darren@cpan.org>
52
53