NAME
Net::Rakuten - Object interface to Rakuten webservice
SYNOPSIS
use Net::Rakuten;
my $r = Dox::Net::Rakuten->new(
output_type => 'perl',
developer_id => '0123456789abcdef',
);
my $keyword = 'Hello Kitty';
my $page = 1;
my $result_rh = $r->search($keyword,$page);
DESCRIPTION
This fills an empty niche for interfacing with the Rakuten webservice detailed here.
http://webservice.rakuten.co.jp/
METHODS
- search
-
an alias for the item_search method
- item_search
-
http://webservice.rakuten.co.jp/api/itemsearch/
- genre_search
-
http://webservice.rakuten.co.jp/api/genresearch/
- item_code_search
-
http://webservice.rakuten.co.jp/api/itemcodesearch/
- catalog_search
-
http://webservice.rakuten.co.jp/api/catalogsearch/
Numerous methods not yet implemented
AUTHOR
Dylan Doxey, <dylan.doxey@gmail.com>
COPYRIGHT AND LICENSE
Copyright (C) 2009 by Dylan Doxey
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.