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

NAME

WebService::Klout - Easy-to-use Interface for Klout API

SYNOPSIS

   use WebService::Klout;

   my $klout = WebService::Klout->new(
       api_key => 'YOUR KLOUT API KEY'
   );

   # or $ENV{'KLOUT_API_KEY'}

   my $scores = $klout->score(@users);

   my %usres;
   for my $user (@$scores) {
       $users{ $user->{'twitter_screen_name'} } = $user->{'kscore'};
   }

METHODS

score
users_show
users_topics
influenced_by
influencer_of
json
raw
status
error

AUTHOR

Craftworks <craftwork at cpan.org>

SEE ALSO

http://klout.com/

http://developer.klout.com/iodocs

COPYRIGHT

Copyright (c) 2011, Craftworks. All rights reserved.

LICENSE

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