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

NAME

WWW::Stickam::API - Perl implementation of Stickam API

SYNOPSYS

 my $api = WWW::Stickam::API->new();
 if( $api->call('User/Profile' , { user_name => 'stickam' } ) ) {
    print Dumper $api->get();
    print $api->get_XML();
    print $api->get_JSON();
 }
 else {
    print $api->error ;
 }

DESCRIPTION

Perl implementation of Stickam API. See http://labs.stickam.jp/api/

METHOD

new

call

This method call stickam API , take API name and parameters. Return true for success , false for fail.

get

get result in hash array format.

get_XML

get result in XML

get_JSON

get result in JSON

error

get error message

tv_interval

get tv_interval. SEE Time::HiRes

SEE ALSO

WWW::Stickam::API::User::Audio

WWW::Stickam::API::User::Image

WWW::Stickam::API::User::Profile

WWW::Stickam::API::User::Video

WWW::Stickam::API::Media::Information

WWW::Stickam::API::Search::Media

WWW::Stickam::API::Search::User

AUTHOR

Tomohiro Teranishi <tomohiro.teranishi@gmail.com>