WWW::Twitpic - Use the twitpic.com simple API from our favorite language.


WWW-Twitpic documentation  | view source Contained in the WWW-Twitpic distribution.

Index


NAME

Top

WWW::Twitpic - Use the twitpic.com simple API from our favorite language.

VERSION

Top

Version 0.02

SYNOPSIS

Top

This module module is just an interface to the simple api described at http://twitpic.com/api.do

Using this module, you'll easily post images to twitpic.com and to your twitter feed.



    use WWW::Twitpic;

    my $client = WWW::Twitpic->new( 
        username => 'your twitter username',
        password => 'your twitter password'
    );

    my $res = $client->post( '/path/to/image.jpg' => 'Message to post with the image on twitter' );

    # $res is a WWW::Twitpic::API::Response
    print $res->is_success ? $res->url : $res->error;




METHODS

Top

At this moment, this is doing what WWW::Twitpic::API does.

meta

    See L<Moose>.

AUTHOR

Top

Diego Kuperman, <diego at freekeylabs.com>

BUGS

Top

Please report any bugs or feature requests to bug-www-twitpic at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-Twitpic. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc WWW::Twitpic




You can also look for information at:

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-Twitpic

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/WWW-Twitpic

* CPAN Ratings

http://cpanratings.perl.org/d/WWW-Twitpic

* Search CPAN

http://search.cpan.org/dist/WWW-Twitpic

SEE ALSO

Top

    L<WWW::Twitpic::API>
    L<WWW::Twitpic::API::Response>

    L<http://twitpic.com>

COPYRIGHT & LICENSE

Top


WWW-Twitpic documentation  | view source Contained in the WWW-Twitpic distribution.