Skip to content

kennyg/google-api-perl-client

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

45 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NAME

Google::API::Client - A client for Google APIs Discovery Service

SYNOPSIS

use Google::API::Client;

my $client = Google::API::Client->new;
my $service = $client->build('urlshortener', 'v1');

# Get shortened URL 
my $body = {
    'longUrl' => 'http://code.google.com/apis/urlshortener/',
};
my $result = $url->insert(body => $body)->execute;
$result->{id}; # shortened URL

DESCRIPTION

Google::API::Client is a client for Google APIs Discovery Service. You make using Google APIs easy.

METHODS

  • new
  • build
  • build_from_document

AUTHOR

Takatsugu Shigeta shigeta@cpan.org

CONTRIBUTORS

Yusuke Ueno (uechoco)

Gustavo Chaves (gnustavo)

Hatsuhito UENO (uehatsu)

chylli

COPYRIGHT

Copyright 2011- Takatsugu Shigeta

LICENSE

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

SEE ALSO

Packages

No packages published

Languages

  • Perl 100.0%