GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Net::Google::Analytics::OAuth2(3) User Contributed Perl Documentation Net::Google::Analytics::OAuth2(3)

Net::Google::Analytics::OAuth2 - OAuth2 for Google Analytics API

version 3.03

    use Net::Google::Analytics;
    use Net::Google::Analytics::OAuth2;

    my $client_id     = "123456789012.apps.googleusercontent.com";
    my $client_secret = "rAnDoMsEcReTrAnDoMsEcReT";
    my $refresh_token = "RaNdOmSeCrEtRaNdOmSeCrEt";

    my $analytics = Net::Google::Analytics->new;

    # Authenticate
    my $oauth = Net::Google::Analytics::OAuth2->new(
        client_id     => $client_id,
        client_secret => $client_secret,
    );
    my $token = $oauth->refresh_access_token($refresh_token);
    $analytics->token($token);

OAuth2 class for Net::Google::Analytics web service.

    my $oauth = Net::Google::Analytics::OAuth2->new(
        client_id     => $client_id,      # required
        client_secret => $client_secret,  # required
        redirect_uri  => $redirect_uri,
    );

Create a new object. Use the client id and client secret from the Google APIs Console. $redirect_uri is optional and defaults to 'urn:ietf:wg:oauth:2.0:oob' for installed applications.

    my $url = $oauth->authorize_url(%extra_params);
    my $url = $oauth->authorize_url(\%extra_params);

Returns a Google URL where the user can authenticate, authorize the application and retrieve an authorization code. %extra_params can be used to pass additional authorization parameters. See <https://developers.google.com/accounts/docs/OAuth2WebServer#formingtheurl>.

    my $token = $oauth->get_access_token($code);

Retrieves an access token and a refresh token using an authorization code. Returns a hashref with the following entries:

access_token

refresh_token

expires_in

token_type

    my $token = $oauth->refresh_access_token($refresh_token);

Retrieves a new access token using a refresh token. Returns a hashref with the following entries:

access_token

expires_in

token_type

    $oauth->interactive;

Obtain and print an access and refresh token interactively using the console. The user is prompted to visit a Google URL and enter a code from that page.

Nick Wellnhofer <wellnhofer@aevum.de>

This software is copyright (c) 2015 by Nick Wellnhofer.

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

2015-03-18 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.