iqu-group/has-offers-api-php-client

Installs: 749

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 1

Open Issues: 1

pkg:composer/iqu-group/has-offers-api-php-client

1.1.3 2017-06-15 08:55 UTC

README

This is a PHP client to connect to the HasOffers API.

Usage

$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());
}