|
NAMENet::Amazon::Request::Power - request class for 'Power Search' SYNOPSIS use Net::Amazon;
use Net::Amazon::Request::Power;
my $ua = Net::Amazon->new(
token => 'YOUR_AMZN_TOKEN'
);
my $req = Net::Amazon::Request::Power->new(
power => 'subject: perl and author: schwartz',
mode => 'books',
);
# Response is of type Net::Amazon::Response::Power
my $resp = $ua->request($req);
DESCRIPTION"Net::Amazon::Request::Power" is a class used to request so-called Power Searches from the Amazon web service. The "power" parameter specifies the power search string, "mode" defines which properties to look for. Upon success, the response's properties() method will return a list of "Net::Amazon::Property::*" objects. METHODS
Check Net::Amazon::Request for common request parameters not listed here. AUTHORSMartin Streicher, <martin.streicher@apress.com> Mike Schilli, <m@perlmeister.com>
|