NAME

WWW::Contact::GoogleContactsAPI - Get contacts/addressbook by Google Contacts Data API

SYNOPSIS

use WWW::Contact;
use Data::Dumper;

my $wc = WWW::Contact->new();
my @contacts = $wc->get_contacts('itsa@gmail.com', 'password');
my $errstr   = $wc->errstr;
if ($errstr) {
    die $errstr;
} else {
    print Dumper(\@contacts);
}

DESCRIPTION

http://code.google.com/apis/contacts/docs/2.0/reference.html

SEE ALSO

WWW::Contact, WWW::Mechanize, Net::Google::AuthSub

AUTHOR

Fayland Lam, <fayland at gmail.com>

COPYRIGHT & LICENSE

Copyright 2008 Fayland Lam, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.