I recently discovered that Amazon will be gradually shifting to their MWS system soon, and that if I want to incorporate all of our European Amazon accounts into one marketplace, I will need to be using MWS to upload our store inventory to the account.
However, our current solution is merely a cURL .sh script that runs every hour on a crontab on our Linux machine. It simply sends the inventory as a flat file to our Amazon account, similar to the following:
curl --header 'Authorization: Basic [omitted authentication info]' --verbose --request POST --upload-file /home/websync/amazon/rhamuk.txt --cookie "x-main=YvjPkwfntqDKun0QEmVRPcTTZDMe?Tn?; ubid-main=002-8989859-9917520; ubid-tacbus=019-5423258-4241018;x-tacbus=vtm4d53DvX@Sc9LxTnAnxsFL3DorwxJa; ubid-tcmacb=087-8055947-0795529; ubid-ty2kacbus=161-5477122-2773524; session-id=087-178254-5924832; session-id-time=950660664" --header "Content-Type: text/xml" --header "UploadFor: Marketplace" --header "FileFormat: TabDelimited" https://secure.amazon.co.uk/exec/panama/seller-admin/catalog-upload/add-modify-delete
Unfortunately, I was not responsible for the creation of this solution and my programming skill, while higher than most in general, is still a bit limited in this area. This script makes perfect sense to me after looking up the help guide for Amazon's old AIM system, and it is so simple. However, their new MWS system has left me completely lost.
They have provided C#, Java, and PHP libraries for example solutions to using MWS, but I am only most familiar with Perl. I have given a user-developed Perl library a try but am still lost.
I guess I do not understand how it can go from being so simple as using cURL to upload the file with all authentication info and parameters, to such a complex system as MWS seems to be.
Where do I start? I have tried using AMTU2 (a program that integrates with MWS for you) but sadly it does not contain a feature to purge-replace the inventory that already exists on Amazon, which we need to do on occasion if there is some wrong items listed for whatever reason (usually an in-store crash of our database).
Is there no simple script that I can run on my linux machine every hour through its crontab that will upload our inventory flat file to Amazon?
Thanks in advance, I know it's a weird question and I am not the most programmatically-gifted, though I am trying!