NAME
Moo::Google - Server-side client library for any Google App API. Based on Moose
VERSION
version 0.03
SYNOPSIS
use
Moo::Google;
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
SEE ALSO
API::Google - my old lib
Google::API::Client - source of inspiration
SUPPORTED APIs
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.