clsystems/sas-api-client
Composer 安装命令:
composer require clsystems/sas-api-client
包简介
Share-A-Sale API library
README 文档
README
A PHP wrapper around the Share-A-Sale API.
This code is Publisher (Affiliate) specific.
If you are looking for Merchant specific code, check out https://github.com/ooglek/shareasale-merchant-api-sdk
Install
Install http://getcomposer.org/ and run the following command:
php composer.phar require clsystems/sas-api-client dev-master
Example
Calling from your code:
use CLSystems\ShareASale\Client; $service = new Client(); // See https://account.shareasale.com/a-apiManager.cfm for info // Remember to whitelist your calling IP $service->setServiceUrl('https://api.shareasale.com'); $service->setVersion('2.3'); $service->setAffiliateId([your affiliate id]); $service->setToken('[your token]'); $service->setSecretKey('[your secret key]'); $options = [ 'dateStart' => '6/22/2016', ]; $records = $service->activity($options); var_dump($records);
Implemented Service Methods:
- activity
- activitySummary
- apitokencount
- balance
- dailyActivity
- couponDeals
- edittrail
- getMerchantDescription
- getProducts
- invalidLinks
- ledger
- merchantCreative
- merchantDataFeeds
- merchantGiftCard
- merchantSearch
- merchantSearchProduct
- merchantStatus
- merchantTimespan
- monthlySummary
- orderInquiry
- paymentSummary
- traffic
- voidtrail
统计信息
- 总下载量: 42
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-01-17