WWW::Bebo::API

Bebo API implementation
Download

WWW::Bebo::API Ranking & Summary

Advertisement

  • Rating:
  • License:
  • Perl Artistic License
  • Publisher Name:
  • Clayton L. Scott
  • Publisher web site:
  • http://search.cpan.org/~clscott/

WWW::Bebo::API Tags


WWW::Bebo::API Description

Bebo API implementation WWW::Bebo::API is a Perl implementation of the Bebo API, started as a fork of WWW::Facebook::API.SYNOPSIS use WWW::Bebo::API; # @ENV{qw/WBA_API_KEY WBA_SECRET WBA_DESKTOP/} are the initial values, # so use those if you only have one app and don't want to pass in values # to constructor my $client = WWW::Bebo::API->new( desktop => 0, api_key => 'your api key', secret => 'your secret key', ); # Change API key and secret print "Enter your public API key: "; chomp( my $val = < STDIN > ); $client->api_key($val); print "Enter your API secret: "; chomp($val = < STDIN > ); $client->secret($val); # not needed if web app (see $client->canvas->get_fb_params) $client->auth->get_session( $token ); use Data::Dumper; my $friends_perl = $client->friends->get; print Dumper $friends_perl; my $notifications_perl = $client->notifications->get; print Dumper $notifications_perl; # Current user's quotes my $quotes_perl = $client->users->get_info( uids => $friends_perl, fields => ); print Dumper $quotes_perl; $client->auth->logout; Requirements: · Perl


WWW::Bebo::API Related Software