mmoravac / appnexus
Simple AppNexus client
Installs: 1 112
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: >=5.3.0
- phpcurl/curlwrapper: ^1.0
Requires (Dev)
- phpunit/phpunit: ^4.8 || ^5.0
This package is auto-updated.
Last update: 2025-03-22 06:34:58 UTC
README
#AppNexusClient Modified Version of https://github.com/f3ath/appnexusclient A simple Appnexus API client
#Install
Via composer:
$ composer require "mmoravac/appnexus"
#Use
$storage = new MMoravac\AppNexusClient\ArrayTokenStorage(); // Memcached and Apc storage are also available $appnexus = new MMoravac\AppNexusClient\AppNexusClient('username', 'password', "http://api-console.client-testing.adnxs.net/", $storage); var_dump($appnexus->call(MMoravac\AppNexusClient\HttpMethod::GET, '/user'));