aivanouski/amazon-mws-finances
Composer 安装命令:
composer require aivanouski/amazon-mws-finances
包简介
Amazon Marketplace Web Service Finances PHP Client Library
README 文档
README
Amazon Marketplace Web Service Finances PHP Client Library - Version 2015-05-01
Installation
Install Composer and add amazon-mws-finances to your composer.json:
composer require aivanouski/amazon-mws-finances:dev-master
Version
Current version is MWSFinancesPHPClientLibrary-2015-05-01._V312120327_.
Installation
Add the reference into your composer.json :
"aivanouski/amazon-mws-finances": "dev-master"
composer update
Use in controller :
$config = array (
'ServiceURL' => $serviceUrl,
'ProxyHost' => null,
'ProxyPort' => -1,
'ProxyUsername' => null,
'ProxyPassword' => null,
'MaxErrorRetry' => 3,
);
$service = new \MWSFinancesService_Client(
AWS_ACCESS_KEY_ID,
AWS_SECRET_ACCESS_KEY,
APPLICATION_NAME,
APPLICATION_VERSION,
$config);
$request = new \MWSFinancesService_Model_ListFinancialEventGroupsRequest();
$request->setSellerId(MERCHANT_ID);
$date = new \DateTime('today', new \DateTimeZone('UTC'));
$request->setFinancialEventGroupStartedAfter($date->format('c'));
$response = $service->ListFinancialEventGroups($request);
统计信息
- 总下载量: 9.14k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2016-03-15