|
NAMENet::Amazon::Request::ISBN- request class for ISBN searchSYNOPSISuse Net::Amazon; use Net::Amazon::Request::ISBN; my $ua = Net::Amazon->new( token => 'YOUR_AMZN_TOKEN' ); my $req = Net::Amazon::Request::ISBN->new( isbn => '9783570009222', ); # Response is of type Net::Amazon::Response::ISBN my $resp = $ua->request($req); DESCRIPTION"Net::Amazon::Request::ISBN" is a class used to submit ISBN (International Standard Book Number) search requests to the Amazon web service.The ISBN number to search for is specified in the "ISBN" parameter. Upon success, the response's "properties()" method will return a single "Net::Amazon::Property::Book" object. METHODS
AUTHORChristopher Boumenot, <boumenot@gmail.com>COPYRIGHT AND LICENSECopyright 2007 by Christopher Boumenot <boumenot@gmail.com>This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |