The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME

Moo::Google - Server-side client library for any Google App API. Based on Moose

VERSION

version 0.03

SYNOPSIS

my $gapi = Moo::Google->new(debug => 0); # my $gapi = Moo::Google->new(access_token => '');
my $user = 'pavelsr@cpan.org'; # full gmail
$gapi->auth_storage->setup({type => 'jsonfile', path => '/path' }); # by default
# $gapi->auth_storage->setup({ type => 'dbi', path => 'DBI object' });
# $gapi->auth_storage->setup({ type => 'mongodb', path => 'details' });
$gapi->user($user);
$gapi->do_autorefresh(1);
my $r1 = $gapi->Calendar->Events->list({ calendarId => 'primary' })->json;
warn scalar @{$r1->{items}};

To create authorization file with tokens in current folder run goauth CLI tool

See unit test in xt folder for more examples

KEY FEATURES

Object-oriented calls by API->Resource->method schema. Like $gapi->Calendar->Events->lists
Classes are generated dynamically using Moose::Meta::Class based on Google API Discovery Service
Different app credentials (client_id, client_secret, users access_token && refresh_token) storage - json file, DBI, MongoDB (u can add your own even)
Automatic access_token refresh (if user has refresh_token) and saving refreshed token to storage
CLI tool (goauth) with lightweight server for easy OAuth2 authorization and getting access_ and refresh_ tokens

SEE ALSO

API::Google - my old lib

Google::API::Client - source of inspiration

SUPPORTED APIs

acceleratedmobilepageurl : v1 : https://developers.google.com/amp/cache/
adexchangebuyer : v1.2,v1.3,v1.4 : https://developers.google.com/ad-exchange/buyer-rest
androidpublisher : v1,v1.1,v2 : https://developers.google.com/android-publisher
appengine : v1alpha,v1beta,v1,v1beta4,v1beta5 : https://cloud.google.com/appengine/docs/admin-api/
clouderrorreporting : v1beta1 : https://cloud.google.com/error-reporting/
cloudfunctions : v1,v1beta2 : https://cloud.google.com/functions
cloudresourcemanager : v1,v1beta1 : https://cloud.google.com/resource-manager
clouduseraccounts : alpha,beta,vm_alpha,vm_beta : https://cloud.google.com/compute/docs/access/user-accounts/api/latest/
Use of uninitialized value in join or string at lib/Moo/Google/Discovery.pm line 139.
consumersurveys : v2 :
dataproc : v1alpha1,v1,v1beta1 : https://cloud.google.com/dataproc/
datastore : v1,v1beta3 : https://cloud.google.com/datastore/
doubleclickbidmanager : v1 : https://developers.google.com/bid-manager/
gamesConfiguration : v1configuration : https://developers.google.com/games/services
gamesManagement : v1management : https://developers.google.com/games/services
genomics : v1alpha2,v1 : https://cloud.google.com/genomics
language : v1,v1beta1,v1beta2 : https://cloud.google.com/natural-language/
plusDomains : v1 : https://developers.google.com/+/domains/
pubsub : v1beta1a,v1,v1beta2 : https://cloud.google.com/pubsub/docs
replicapoolupdater : v1beta1 : https://cloud.google.com/compute/docs/instance-groups/manager/#applying_rolling_updates_using_the_updater_service
resourceviews : v1beta1,v1beta2 : https://developers.google.com/compute/
Use of uninitialized value in join or string at lib/Moo/Google/Discovery.pm line 139.
surveys : v2 :
toolresults : v1beta3firstparty,v1beta3 : https://firebase.google.com/docs/test-lab/
youtubeAnalytics : v1,v1beta1 : http://developers.google.com/youtube/analytics/

AUTHOR

Pavel Serikov <pavelsr@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2017 by Pavel Serikov.

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