1Net::Amazon::Request::SUeslelrerC(o3n)tributed Perl DocuNmeetn:t:aAtmiaoznon::Request::Seller(3)
2
3
4
6 Net::Amazon::Request::Seller - Class for submitting Seller requests
7
9 use Net::Amazon;
10 use Net::Amazon::Request::Seller;
11
12 my $ua = Net::Amazon->new(
13 token => 'YOUR_AMZN_TOKEN'
14 );
15
16 my $req = Net::Amazon::Request::Seller->new(
17 seller => 'A23JJ2BNHZMFCO'
18 );
19
20 # Response is of type Net::Amazon::Response::Seller
21 my $resp = $ua->request($req);
22
24 "Net::Amazon::Request::Seller" is a class used to submit Seller search
25 requests to the Amazon web service.
26
27 The seller to search for is specified in the "seller" parameter, which
28 contains the seller's ID (not the seller's nickname!).
29
30 Upon success, the responses' result() method will return a single
31 "Net::Amazon::Result::Seller" object.
32
33 Check Net::Amazon::Request for common request parameters not listed
34 here.
35
36 METHODS
37 new( seller => $seller_id )
38 Constructs a new "Net::Amazon::Request::Seller" object, used to
39 query the Amazon web service with the given seller id, and listing
40 id. As of AWS4 listing id is a mandatory parameter.
41
43 Mike Schilli, <m@perlmeister.com>
44
46 Copyright 2004 by Mike Schilli <m@perlmeister.com>
47
48 This library is free software; you can redistribute it and/or modify it
49 under the same terms as Perl itself.
50
51
52
53perl v5.38.0 2023-07-21 Net::Amazon::Request::Seller(3)