https://github.com/f3ath/appnexusclient
A simple Appnexus API client
https://github.com/f3ath/appnexusclient
Last synced: 9 months ago
JSON representation
A simple Appnexus API client
- Host: GitHub
- URL: https://github.com/f3ath/appnexusclient
- Owner: f3ath
- License: mit
- Created: 2014-01-24T22:13:21.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2020-01-31T07:44:09.000Z (almost 6 years ago)
- Last Synced: 2025-04-15T22:35:05.748Z (9 months ago)
- Language: PHP
- Homepage: https://packagist.org/packages/f3ath/appnexus
- Size: 35.2 KB
- Stars: 12
- Watchers: 4
- Forks: 8
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# AppNexusClient
[](https://packagist.org/packages/f3ath/appnexus)
[](https://packagist.org/packages/f3ath/appnexus)
[](https://travis-ci.org/f3ath/appnexusclient)
[](https://insight.sensiolabs.com/projects/3637a8cf-8735-465a-b528-a4ad1edff017)
A simple Appnexus API client
# You can help development of this library by providing me an API key
# Install
Via [composer](https://getcomposer.org):
`$ composer require "f3ath/appnexus"`
# Use
```php
$storage = new F3\AppNexusClient\ArrayTokenStorage(); // Memcached and Apc storage are also available
$appnexus = new F3\AppNexusClient\AppNexusClient('username', 'password', "http://api-console.client-testing.adnxs.net/", $storage);
var_dump($appnexus->call(F3\AppNexusClient\HttpMethod::GET, '/user'));
```