iqu-group / has-offers-api-php-client
1.1.3
2017-06-15 08:55 UTC
Requires
- guzzlehttp/guzzle: ^6.2
This package is not auto-updated.
Last update: 2024-09-28 20:03:47 UTC
README
这是一个用于连接HasOffers API的PHP客户端。
用法
$client = new \GuzzleHttp\Client(); $affiliateController = new \Iqu\HasOffersAPIClient\Controllers\AffiliateController($networkToken, $networkId, $client); try { $response = $affiliateController->findAll(); var_dump($response); } catch (\Exception $e) { echo($e->getMessage()); }