audiens/adform-client

PHP client for adform API

This package's canonical repository appears to be gone and the package has been frozen as a result.

1.1.5 2020-04-27 16:16 UTC

This package is auto-updated.

Last update: 2023-01-27 22:13:44 UTC


README

Software License Build Status Coverage Status Maintainability Scrutinizer Code Quality

A PHP client library for AdForm's DMP API.

Installation Using Composer

$ composer require Audiens/adform-client

Available endpoints

The current implementation covers the following endpoints:

Usage

require 'vendor/autoload.php';

$username = '{yourUsername}';
$password = '{yourPassword}';

try {
    $adform = new Audiens\AdForm\Client($username, $password);
} catch (Audiens\AdForm\Exception\OauthException $e) {
    exit("Auth failed with message: ".$e->getMessage());
}

// Get 10 categories
$categories = $adform->categories()->getItems(10);
foreach ($categories as $category) {
    echo $category->getName()."\n";
}

// create a new category
$category = new Audiens\AdForm\Entity\Category();
$category->setName('Test')
    ->setDataProviderId(10000);

$category = $adform->categories()->create($category);

More examples are available in the examples dir.

Cache

The package has an optional ability to cache the API call locally. Two cache drivers are available, Redis and File.

require 'vendor/autoload.php';

$username = '{yourUsername}';
$password = '{yourPassword}';

// Redis driver
try {
    $redisConfig = [
        'scheme' => 'tcp',
        'host' => '192.168.10.10',
        'port' => 6379,
    ];
    $cacheRedis = new Audiens\AdForm\Cache\RedisCache($redisConfig);
    $adformRedis = new Audiens\AdForm\Client($username, $password, $cacheRedis);
} catch (Audiens\AdForm\Exception\OauthException $e) {
    exit("Auth failed with message: ".$e->getMessage());
}

// File driver
try {
    $path = '/path/to/your/cache/dir'
    $cacheFile = new Audiens\AdForm\Cache\FileCache($path);
    $adformFile = new Audiens\AdForm\Client($username, $password, $cache);
} catch (Audiens\AdForm\Exception\OauthException $e) {
    exit("Auth failed with message: ".$e->getMessage());
}

License

The MIT License (MIT). Please see LICENSE for more information.