Getting resources using php and MWS

I need to create a PHP script that retrieves and updates my resources from Amazon and on Amazon to my personal web page. Can this be done with MWS or any WS? I also need to show at the beginning of my site all the products that I have on Amazon, and show a link for users to buy this product through Amazon.

Any help?

Greetings and many thanks in advance

+6
source share
3 answers

Yes.

use amazon mws api, in particular the Reports section here

You must request (via RequestReport) "Open the list report." Amazon will give you a few minutes later CSV with all your listings with SKU, ASIN, quantity and price.

If you want to display these lists, you need to display them for yourself. you can link to ASIN with some images, so maybe you need to get these pictures and names for yourself (maybe using another ReportType).

You can play with this API in Amazon MWS Scratchpad .

+8
source

For those using Amazon FBA; use the Fulfillment Inventory API: http://docs.developer.amazonservices.com/en_US/fba_inventory/

(at least to get your current inventory, maybe not 100%, which the questioner asked, but after a few years I came to this page looking for the same thing, but with the FBA)

+1
source

Amazon MWS is intended only to create new products and synchronize them with your Amazon seller or automatically change the price from your website or to receive reports or process orders. I do not think that you can display the Amazon store on your website using.

0
source

Source: https://habr.com/ru/post/913652/


All Articles