1Net::Amazon::Request::AUlsle(r3)Contributed Perl DocumenNteatt:i:oAnmazon::Request::All(3)
2
3
4
6 Net::Amazon::Request::All - request class for 'All Search'
7
9 use Net::Amazon;
10 use Net::Amazon::Request::All;
11
12 my $ua = Net::Amazon->new(
13 token => 'YOUR_AMZN_TOKEN'
14 );
15
16 my $req = Net::Amazon::Request::All->new(
17 all => 'perl'
18 );
19
20 # Response is of type Net::Amazon::Response::All
21 my $resp = $ua->request($req);
22
24 "Net::Amazon::Request::All" is a class used to request All Searches
25 from the Amazon web service.
26
27 The "blended" parameter specifies the keyword search string for the
28 blended query. "mode" is not applicable to blended searches which
29 returns books, music, etc all at once.
30
31 Upon success, the response's "properties()" method will return a list
32 of "Net::Amazon::Property::*" objects.
33
34 METHODS
35 new(keyword => $search_string)
36 Constructs a new "Net::Amazon::Request::All" object.
37
38 See the "Amazon Web Services 2.1 API and Integration Guide" for
39 details.
40
41 Check Net::Amazon::Request for common request parameters not listed
42 here.
43
45 Robert Graff, <rgraff@workingdemo.com> Yuichi Tateno,
46 <hotchpotch@gmail.com>
47
48
49
50perl v5.34.0 2021-07-22 Net::Amazon::Request::All(3)