NAME
Net::Google::WebmasterTools::Request - Google Webmaster Tools API request
VERSION
version 0.03
SYNOPSIS
my $req = $wmt->new_request(
site_url => "http://www.example.com",
report_name => "searchAnalytics",
method => "query",
dimensions => "[query,country,device]",
search_type => "web",
start_date => "2015-08-01",
end_date => "2015-08-05",
row_limit => 5,
);
my $res = $wmt->retrieve($req);
DESCRIPTION
Request class for Net::Google::WebmasterTools web service.
CONSTRUCTOR
new
my $req = Net::Google::WebmasterTools::Request->new(param => $value, ...);
my $req = $wmt->new_request(param => $value, ...);
Creates a new request object with the given parameters. You can also use the shorthand "new_request" in Net::Google::WebmasterTools.
ACCESSORS
$req->site_url('http://example.com');
$req->method('query');
See the API reference for a description of the request parameters. The provided parameter values must not be URL encoded.
site_url
Required
report_name
Required
method
Required
start_date
Required
end_date
Required
dimensions
row_limit
fields
pretty_print
user_ip
quota_user
AUTHOR
Nick Wellnhofer <wellnhofer@aevum.de>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 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.