aivanouski / amazon-mws-orders
There is no license information available for the latest version (v1.3) of this package.
Amazon Marketplace Web Service Orders PHP Client Library Version 2013-09-01
v1.3
2016-10-12 22:02 UTC
Requires
- php: >=5.2.8
- ext-curl: *
This package is not auto-updated.
Last update: 2024-11-15 22:29:59 UTC
README
Amazon Marketplace Web Service Orders PHP Client Library - Version 2013-09-01
Installation
Install Composer and add amazon-mws-orders to your composer.json
:
composer require aivanouski/amazon-mws-orders:dev-master
Version
Current version is MWSOrdersPHPClientLibrary-2013-09-01._V293335039_
.
Installation
Add the reference into your composer.json :
"aivanouski/amazon-mws-orders": "dev-master"
composer update
Use in controller :
$config = array (
'ServiceURL' => $serviceUrl,
'ProxyHost' => null,
'ProxyPort' => -1,
'ProxyUsername' => null,
'ProxyPassword' => null,
'MaxErrorRetry' => 3,
);
$service = new \MarketplaceWebServiceOrders_Client(
AWS_ACCESS_KEY_ID,
AWS_SECRET_ACCESS_KEY,
APPLICATION_NAME,
APPLICATION_VERSION,
$config);
$request = new \MarketplaceWebServiceOrders_Model_ListOrdersRequest();
$request->setSellerId(MERCHANT_ID);
$response = $service->ListOrders($request);