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

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 ;
}

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

This method call stickam API , take API name and parameters. Return true for success , false for fail.
get result in hash array format.
get result in XML
get result in JSON
get error message
get tv_interval. SEE Time::HiRes
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

Tomohiro Teranishi <tomohiro.teranishi@gmail.com>