Download the PHP package swco/appnexusapi without Composer
On this page you can find all versions of the php package swco/appnexusapi. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download swco/appnexusapi
More information about swco/appnexusapi
Files in swco/appnexusapi
Package appnexusapi
Short Description Interface for accessing the AppNexus read-only API
License MIT
Informations about the package appnexusapi
AppNexus Read-Only API
Installation
This library requires PHP 5.3 or later, and is installable and autoloadable via Composer as swco/appnexusapi.
Getting Started
The examples below show a few different ways you can access data.
When accessing data through the helper get*
methods the request is sent straight away and returns an array of objects.
When using the get($service, $reset = true)
method you can continue to apply filtering before calling send()
. With send()
you also get the Response
object returned rather than a regular array. This gives access to a few more methods like getStatus()
and getStartElement()
.
The second param passed to get()
allows you to reset all the filters (default action). Passing false
will stop reset()
being called.
All services' parameters default to their falsey value;
The only exception to this rule is params that should be an object, if unset these will return null;
Advanced
Some services (currently Brand) have their own special filter, this is accompanied with a Request wrapper;
This allows for extra functionality such as access to the simple()
method above that removes the num_creatives
data
making the API call a lot faster.
You can also send the simple flags through the helper functions getBrand()
and getBrands()
;
Auth
For heavier usage it is worth storing the token for re-use*. The token doesn't change and the library handles re-authing when needed.
*The token does change occasionally. If an old token is stored in the config the request will re-auth getting a correct token. There is currently no way of reporting this.
Auth can be handled via the request object or using the Auth
object directly;
DataPool
Generally the API is limited to 100 results per request. There is a DataPool
object available to get all or a specific number of results by making multiple requests;