NAME

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

VERSION

Version 0.02

SYNOPSIS

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

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

meta

See L<Moose>.

AUTHOR

Diego Kuperman, <diego at freekeylabs.com>

BUGS

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

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

perldoc WWW::Twitpic

You can also look for information at:

SEE ALSO

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

L<http://twitpic.com>

COPYRIGHT & LICENSE

Copyright 2009 Diego Kuperman, all rights reserved.

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