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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package appnexusapi

AppNexus Read-Only API

Latest Stable Version Build Status License

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;


All versions of appnexusapi with dependencies

PHP Build Version
Package Version
Requires guzzle/guzzle Version v3.8.1
php Version >=5.3
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package swco/appnexusapi contains the following files

Loading the files please wait ....