WWW::PipeViewer::Authentication - OAuth login support.

NAME

WWW::PipeViewer::Authentication - OAuth login support.

SYNOPSIS

use WWW::PipeViewer;
my $hash_ref = WWW::PipeViewer->oauth_login($code);

SUBROUTINES/METHODS

oauth_refresh_token()

Refresh the access_token using the refresh_token. Returns a HASH ref with the `access_token` or undef.

get_accounts_oauth_url()

Creates an OAuth URL with the 'code' response type. (Google's authorization server)

oauth_login($code)

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.

load_authentication_tokens()

Will try to load the access and refresh tokens from authentication_file.

encode_token($token)

Encode the token with the key and return it.

decode_token($token)

Decode the token with the key and return it.

save_authentication_tokens()

Encode and save the access and refresh into the authentication_file.

AUTHOR

Trizen, <echo dHJpemVuQHByb3Rvbm1haWwuY29tCg== | base64 -d>

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc WWW::PipeViewer::Authentication

LICENSE AND COPYRIGHT

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.