Amazon-MWS
view release on metacpan or search on metacpan
lib/Amazon/MWS.pm view on Meta::CPAN
=item image
Product images (required).
Please note that B<only http:// links> are allowed. If you pass https://
links, they will be rejected by Amazon.
=item variants
Product variants (optional).
=back
You are not by any means finished with the upload, see L</Resume uploads>.
=head2 Delete products
Deleting products is much more straightforward, but you have still to
care of tracking the upload process, see again L</Resume uploads>.
my $uploader = Amazon::MWS::Uploader->new(...);
$uploader->delete_skus(@skus);
=head2 Resume uploads
This is necessary to check whether the upload has been
processed by Amazon.
my $uploader = Amazon::MWS::XML::Uploader->new(...);
$uploader->resume;
The uploader also goes automatically through the steps for the
product uploads.
=head1 MWS in practice
=head2 Product price
Every product uploaded needs a price of 0.01 or higher, otherwise you
get the following error:
0.00 price (standard or sales) will not be accepted.
Please ensure that every SKU in your feed has a price at least equal to or greater than 0.01
=head2 Shipping costs
You need to configure the shipping costs in Amazon Seller Central, you can't pass them
through MWS:
L<https://sellercentral.amazon.com/gp/shipping/dispatch.html>
=head2 Stuck uploads
There is no guarantee that Amazon finishes your uploads at all. We had uploads
stuck for at least a week.
=head2 Multiple marketplaces
You can use this module and the uploader for multiple Amazon marketplaces.
Please make sure that you disable Amazon's synchronisation between marketplaces.
For marketplaces with a different currency you need to convert your price first.
The list of marketplaces can be found at:
L<http://docs.developer.amazonservices.com/en_US/dev_guide/DG_Endpoints.html>
=head2 Throttling and Quota
With Amazon MWS you have to deal with Amazon throttling your uploads and
imposing quotas.
Possible reasons:
=over 4
=item Upload too often
=item Stuck uploads
=item Orders with orderlines
=back
=head3 Throttle Reponse
<?xml version="1.0"?>
<ErrorResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
<Error>
<Type></Type>
<Code>RequestThrottled</Code>
<Message>Request is throttled</Message>
</Error>
<RequestID>a7b39ee6-4f76-48ee-92f1-43bc54f693df</RequestID>
</ErrorResponse>
=head3 Quota Exceeded Error Response
<?xml version="1.0"?>
<ErrorResponse xmlns="http://mws.amazonaws.com/doc/2009-01-01/">
<Error>
<Type></Type>
<Code>QuotaExceeded</Code>
<Message>You exceeded your quota of 80.0 requests per 1 hour for operation Feeds/2009-01-01/GetFeedSubmissionList. Your quota will reset on Thu Dec 18 07:39:00 UTC 2014</Message>
</Error>
<RequestID>5115e00d-35a8-4589-8083-f0ef998f76ef</RequestID>
</ErrorResponse>
=head2 Upload Errors
=head3 Error 8572: Incorrect UPCs/EANs/...
error: You are using UPCs, EANs, ISBNs, ASINs, or JAN codes
that do not match the products you are trying to list. Using incorrect UPCs,
EANs, ISBNs, ASINs or JAN codes is prohibited and it can result in your ASIN
creation privileges being suspended or permanently removed.
This happened in our case with products having self assigned EAN codes, but
with a well known manufacturer. Apparently Amazon knows about the EAN ranges
for this manufacturer.
( run in 3.256 seconds using v1.01-cache-2.11-cpan-d01c6094234 )