clsystems/cd-api-client

Click Dealer API 库

0.1.3 2020-10-18 14:47 UTC

This package is auto-updated.

Last update: 2024-09-29 05:56:03 UTC


README

围绕 Click Dealer API 的 PHP 封装

安装

安装 https://getcomposer.org.cn/ 并运行以下命令

php composer.phar require clsystems/cd-api-client dev-master

示例

请求活动

  • 通过 apiKey / AffiliateId
$api = new CLSystems\Clickdealer\Api($apiKey, $affiliateId);
$campaigns = $api->getCampaigns(['campaign_id' => 1234]);

foreach ($campaigns as $campaign) {
    // do smth with campaign
}