WWW::PipeViewer::Authentication - OAuth login support. |
WWW::PipeViewer::Authentication - OAuth login support.
use WWW::PipeViewer;
my $hash_ref = WWW::PipeViewer->oauth_login($code);
Refresh the access_token using the refresh_token. Returns a HASH ref with the `access_token` or undef.
Creates an OAuth URL with the 'code' response type. (Google's authorization server)
Returns a HASH ref with the access_token, refresh_token and some other info.
The $code can be obtained by going to the URL returned by the get_accounts_oauth_url()
method.
Will try to load the access and refresh tokens from authentication_file.
Encode the token with the key and return it.
Decode the token with the key and return it.
Encode and save the access and refresh into the authentication_file.
Trizen, <echo dHJpemVuQHByb3Rvbm1haWwuY29tCg== | base64 -d>
You can find documentation for this module with the perldoc command.
perldoc WWW::PipeViewer::Authentication
Copyright 2013-2015 Trizen.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See https://dev.perl.org/licenses/ for more information.
WWW::PipeViewer::Authentication - OAuth login support. |