klabeh/amazon-mws-repricing

Amazon Repricing Helper Classes

dev-master 2017-05-02 11:23 UTC

This package is not auto-updated.

Last update: 2024-04-14 01:22:56 UTC


README

Amazon MWS Repricing Helper Classes

Getting Inventory Data:

Usage for getting the Inventory Data:

$config = new \Twinsen\AmazonMwsRepricing\Models\MwsConfigModel();
$config->setServiceUrl("https://mws.amazonservices.de/");
$config->setKeyId('****');
$config->setAccessKey('****');
$config->setMarketPlaceId('****');
$config->setMerchantId('****');
$mwsService = new \Twinsen\AmazonMwsRepricing\MwsService();
$mwsService->connect($config);
$inventory = $mwsService->getInventoryItems();
print_r($inventory[0]);

Feel free to implement the MwsConfigInterface,for passing the Configuration.

Getting Product Price updates:

  1. Register a AWS Account

  2. Create a IAM User,grant SQS Support to it

  3. Create SQS Queue

  4. Use following Tutorial : http://docs.developer.amazonservices.com/en_IT/subscriptions/Subscriptions_ReceivingNotifications.html to give acess to the Amazon MWS

  5. Use Mws to put the Key on it:

$mwsService = new \Twinsen\AmazonMwsRepricing\MwsSubscriptionService();
$mwsService->connect($mwsConfig);
$mwsService->registerDestination('https://sqs.eu-central-1.amazonaws.com/***');
$mwsService->createSubscription('https://sqs.eu-central-1.amazonaws.com/***');
  1. Look at the Queue in Console Manager

  2. If you want to know the Format,use following Link https://gist.github.com/hakanensari/9f3e14d18a44f0d1c153

Todo: Implement Price Updates Push

use the following Api to pass the Prices back: http://docs.developer.amazonservices.com/en_US/feeds/Feeds_SubmitFeed.html

Getting Prices (deprecated and not working anymore due to Amazon Update)

For Getting the Price Information you can use 2 Different Approaches:

  1. Using the MWS Product Api
$config = new \Twinsen\AmazonMwsRepricing\Models\MwsConfigModel();
$config->setServiceUrl("https://mws.amazonservices.de/");
$config->setKeyId('****');
$config->setAccessKey('****');
$config->setMarketPlaceId('****');
$config->setMerchantId('****');
$mwsService = new \Twinsen\AmazonMwsRepricing\MwsProductService();
$mwsService->connect($config);
$asin = "****";
$priceModel = $mwsService->getCompetitivePriceForASIN($asin);
  1. Using the Amazon Advertising Api
$conf = new \Twinsen\AmazonMwsRepricing\Models\PaaConfigModel();
$conf->setCountry('de');
$conf->setAccessKey("***");
$conf->setSecretKey("***");
$conf->setAssociateTag("***");
$paaService = new \Twinsen\AmazonMwsRepricing\PaaService();
$paaService->connect($conf);
$response = $paaService->getCompetivePriceForAsin("****");
echo $paaService->debugResponse($response);

Another interessting Projects related to the Project:

https://github.com/wp-plugins/wp-lister-for-amazon/blob/0cfdc6f7e143454ab5ed6b0b12b7d4272250fb6e/classes/helper/WPLA_FeedDataBuilder.php