|
| 1 | +<?php |
| 2 | +die('This is just an example and will not work without proper store credentials.'); |
| 3 | + |
| 4 | +$amazonConfig = array( |
| 5 | + 'stores' => |
| 6 | + array('myStoreName' => |
| 7 | + array( |
| 8 | + 'merchantId' => 'AAAAAAAAAAAA', |
| 9 | + 'marketplaceId' => 'AAAAAAAAAAAAAA', |
| 10 | + 'keyId' => 'AAAAAAAAAAAAAAAAAAAA', |
| 11 | + 'secretKey' => 'BABABABABABABABABABABABABABABABABABABABA', |
| 12 | + 'serviceUrl' => '', |
| 13 | + 'MWSAuthToken' => '', |
| 14 | + ) |
| 15 | + ), |
| 16 | + 'AMAZON_SERVICE_URL' => 'https://mws-eu.amazonservices.com', // eu store |
| 17 | + 'logpath' => __DIR__ . './logs/amazon_mws.log', |
| 18 | + 'logfunction' => '', |
| 19 | + 'muteLog' => false |
| 20 | +); |
| 21 | + |
| 22 | +/** |
| 23 | + * This function will retrieve a list of all items with quantity that was adjusted within the past 24 hours. |
| 24 | + * The entire list of items is returned, with each item contained in an array. |
| 25 | + * Note that this does not relay whether or not the feed had any errors. |
| 26 | + * To get this information, the feed's results must be retrieved. |
| 27 | + */ |
| 28 | +function getAmazonFeedStatusA(){ |
| 29 | + global $amazonConfig; // only for example purposes, please don't use globals! |
| 30 | + |
| 31 | + |
| 32 | + try { |
| 33 | + $amz=new AmazonFeedList($amazonConfig); |
| 34 | + $amz->setStore('myStoreName'); // Not strictly needed as there is only 1 store in the array and its automatically activated |
| 35 | + $amz->setTimeLimits('- 24 hours'); //limit time frame for feeds to any updated since the given time |
| 36 | + $amz->setFeedStatuses(array("_SUBMITTED_", "_IN_PROGRESS_", "_DONE_")); //exclude cancelled feeds |
| 37 | + $amz->fetchFeedSubmissions(); //this is what actually sends the request |
| 38 | + return $amz->getFeedList(); |
| 39 | + } catch (Exception $ex) { |
| 40 | + echo 'There was a problem with the Amazon library. Error: '.$ex->getMessage(); |
| 41 | + } |
| 42 | +} |
| 43 | + |
| 44 | +/** |
| 45 | + * As above but with an alternative method of creating the config object. |
| 46 | + */ |
| 47 | +function getAmazonFeedStatusB(){ |
| 48 | + global $amazonConfig; // only for example purposes, please don't use globals! |
| 49 | + |
| 50 | + $configObject = new \AmazonMWSConfig($amazonConfig); |
| 51 | + |
| 52 | + try { |
| 53 | + // using the getConfigFor method creates another instance of AmazonMWSConfig containing just that store's data |
| 54 | + // If the method in getAmazonFeedStatusA() has more than 1 store setup in the array, they all are available to |
| 55 | + // the Amazon MWS library and you can switch between them using setStore(). However, should you want to |
| 56 | + // have clear seperation between the stores forwhatever reason, you can use getConfigFor to ensure that only |
| 57 | + // one store is available to the library. They're all still available in the configObject for later use, |
| 58 | + // calling getConfigFor does not affect the store list within the $configObject |
| 59 | + |
| 60 | + $amz=new AmazonFeedList($configObject->getConfigFor('myStoreName')); |
| 61 | + $amz->setTimeLimits('- 24 hours'); //limit time frame for feeds to any updated since the given time |
| 62 | + $amz->setFeedStatuses(array("_SUBMITTED_", "_IN_PROGRESS_", "_DONE_")); //exclude cancelled feeds |
| 63 | + $amz->fetchFeedSubmissions(); //this is what actually sends the request |
| 64 | + return $amz->getFeedList(); |
| 65 | + } catch (Exception $ex) { |
| 66 | + echo 'There was a problem with the Amazon library. Error: '.$ex->getMessage(); |
| 67 | + } |
| 68 | +}?> |
0 commit comments