The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Net::Google::Analytics::Request - Google Analytics API request

VERSION

version 3.03

SYNOPSIS

my $req = $analytics->new_request(
    ids         => "ga:$profile_id",
    dimensions  => "ga:medium,ga:source",
    metrics     => "ga:bounces,ga:visits",
    filters     => "ga:medium==referral",
    sort        => "-ga:visits",
    start_date  => "2011-10-01",
    end_date    => "2011-10-31",
    max_results => 5,
);

my $res = $analytics->retrieve($req);

DESCRIPTION

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

CONSTRUCTOR

new

my $req = Net::Google::Analytics::Request->new(param => $value, ...);
my $req = $analytics->new_request(param => $value, ...);

Creates a new request object with the given parameters. You can also use the shorthand "new_request" in Net::Google::Analytics.

ACCESSORS

$req->ids('ga:...');
$req->dimensions('ga:...');

See the API reference for a description of the request parameters. The provided parameter values must not be URL encoded.

realtime

Set this parameter to use the Real Time Reporting API.

ids

Required

start_date

Required for non-realtime requests

end_date

Required for non-realtime requests

metrics

Required

dimensions

sort

filters

segment

start_index

max_results

fields

pretty_print

user_ip

quota_user

AUTHOR

Nick Wellnhofer <wellnhofer@aevum.de>

COPYRIGHT AND LICENSE

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.