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

NAME

WWW::Twitpic::API - Twitpic simple API

VERSION

Version 0.02

SYNOPSIS

    use WWW::Twitpic::API;

    my $client = WWW::Twitpic::API->new(
        username => 'a twitter username',
        password => 'the big secret'
    );

    # post a new image to the twitter feed
    $clent->post( '/path/to/image_filename' => 'The message for this pic' );

    # or just upload the image to twitpic
    $client->upload( '/path/to/image_filename' );

METHODS

username set/get the twitter username

password set/get the password for the username provided.

ua Set/get the user agent make API calls. LWP::UserAgent->new() by default.

uri Base URI to the API.

response The WWW::Twitpic::API::Response from the last post or upload.

has_response Check if exists a reponse.

meta See Moose.

upload

    Upload the provided image to twitpic.com

    Returns WWW::Twitpic::API::Response

    Example: $api->upload( '/tmp/my_picture.jpg' );

    See L<http://twitpic.com/api.do#upload>

post

    Upload the provided image to twitpic.com and post it
    on the username twitter feed with the optional
    message provided.

    Returns WWW::Twitpic::API::Response

    Example: $api->post( '/tmp/my_picture.jpg' => "Look ma, I'm on twitter!");

    See L<http://twitpic.com/api.do#uploadAndPost>

_make_request

    Create and POST a request and return a Twitpic::API::Response.

AUTHOR

Diego Kuperman, <diego at freekeylabs.com>

BUGS

Please report any bugs or feature requests to bug-www-twitpic-api 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:

ACKNOWLEDGEMENTS

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.