The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

WWW::Contact::Plaxo - Get contacts from Plaxo

SYNOPSIS

    use WWW::Contact;
    use Data::Dumper;
    
    my $wc       = WWW::Contact->new();
    # Note that the last argument for get_contacts is mandatory,
    # or else it will try to fetch contacts from email.com
    my @contacts = $wc->get_contacts('itsa@email.com', 'password', 'plaxo');
    my $errstr   = $wc->errstr;
    if ($errstr) {
        die $errstr;
    } else {
        print Dumper(\@contacts);
    }

DESCRIPTION

Get contacts from Plaxo. Extends WWW::Contact::Base

SEE ALSO

WWW::Contact, WWW::Contact::Base, WWW::Mechanize

AUTHOR

Sachin Sebastian, <sachinjsk at cpan.org>

COPYRIGHT & LICENSE

Copyright 2008 Sachin Sebastian, all rights reserved.

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