Subject: | Docs don't include required arguments |
A number of options to the constructor (new) are required but not spoken
of in the documentation. Specifically, in order to get the example to
work, I had to construct the object like this:
my $gdrive = Net::GoogleDrive->new(
scope => 'https://www.googleapis.com/auth/drive',
redirect_uri => '<provided by google>',
client_id => '<provided by google>',
client_secret => '<provided by google>',
);
Probably the docs should be updated.