PHPackages                             chilimatic/openxclient - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. chilimatic/openxclient

ActiveLibrary

chilimatic/openxclient
======================

ZF-REST client

047PHP

Since Apr 18Pushed 10y ago1 watchersCompare

[ Source](https://github.com/chilimatic/OX3-PHP-API-Client)[ Packagist](https://packagist.org/packages/chilimatic/openxclient)[ RSS](/packages/chilimatic-openxclient/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (2)Used By (0)

ox3-php-api-client
==================

[](#ox3-php-api-client)

This library provides a client class with examples to facilitate access to the OpenX API. The file OX3\_Api\_Client.php supports Zend Framework Version 1 and the file OX3\_Api\_Client2.php supports Zend Framework Version 2.

\#Installation **If Working with Zend Framework 1:**

1. Install Zend Framework 1.12.13 (link: ).
2. Set include\_path:

- Method 1: Navigate to /private/etc/php.ini and set include\_path to the path to the Zend Framework under the "/library" directory.

```
include_path = ".:/Users/.../ZendFramework-1.12.13/library/"

```

- Method 2: Alternatively, you can create a file called 'set\_path.php' and set your paths there. If you chose to set the path using this option, the file 'set\_path.php' should look like:

```

```

\*\* If you use this option make sure to create the file in the same folder as the folder which contains the OX3\_API\_Client.php file. Also make sure to require the file by adding the line "require\_once 'set\_path.php'; " to the top of the OX3\_Api\_Client.php file.

**If Working with Zend Framework 2:**

1. Install Zend Framework 2 (link: ).
2. Install Composer in your working directory (link: ).
3. Run the command "php composer.phar init". After doing this. composer will guide you through the process of configuring a composer.json file. To allow the default configuration, press enter or "yes" when prompted.
4. Install the required Zend packages, ZendOAuth and ZendRest:
    To do so, add the "repositories" and "require" sections in the composer.json file so the file looks
    as follows:

```
{
"name": "",
"authors": [
{
"name": "",
"email": ""
}
],

"repositories": [
{
"type": "composer",
"url": "https://packages.zendframework.com/"
}
],
"require": {
"zendframework/zendoauth": "2.0.*",
"zendframework/zendrest": "2.0.*"
}
}

```

5. Run the command "php composer.phar install" to install the packages and their dependencies.
6. Set include\_path:

- Method 1: Navigate to /private/etc/php.ini and set include\_path to the paths to the Zend Framework under the ".../library/" directory and to the newly installed packages under the ".../vendor/" directory. The "vendor" folder should appear in your working directory after installing the packages with composer.

```
include_path = ".:/Users/.../ZendFramework-2.4.5/library/:/Users/.../vendor/"

```

- Method 2: Alternatively, you can create a file called 'set\_path.php' and set your paths there. If you chose to set the path using this option, the file set\_path.php should look like:

```

```

\*\* If you use this option make sure to create the file in the same folder as the folder which contains the OX3\_API\_Client2.php file. Also make sure to require the file by adding the line "require\_once 'set\_path.php'; " to the top of the OX3\_Api\_Client2.php file.

\#Authentication/Example Scripts
Add this to your code to authenticate with Oauth:

```

```

\*\* Note that when running the example scripts, OX3\_Api\_Client.php/OX3\_Api\_Client2.php must be in the same folder as the script. Also note that the example scripts contain some user configurable variables (besides the authentication section), which are described at the top of the scripts.

\#Usage

- To see the results in a friendly format on the command line, use the functions json\_Decode, getBody, and print\_r. Ex) $result = $client-&gt;get('/account');
    print\_r(json\_decode($result-&gt;getBody(), true));

**GET REQUESTS:**

- To get all current objects of a certain type, use the following request:

```
$result = $client->get('/"object_type"');
Ex) $result = $client->get('/account');

```

- To get the object(s) with a specific value for some attribute(s), pass in the value of the desired attribute as an array along with the path:

```
$query = array("attribute"=>"value");
$result = $client->get('/object_type', $query')
Ex) $query1 = array('name'=>'OpenX');
result1 = $client->get('/account', $query1);
--> Returns the account(s) with the name OpenX

```

- Many fields have multiple options for what value they can take on. To see these options, use the following request:

```
$result = $client->get('/options/"field_options"')
Ex) $content_types = $client->get('/options/content_type_options');

```

**POST REQUESTS:**

- To create an object, make a post request, passing in the path along with an array which includes the values of the fields for the object

```
$query = array(
'account_uid'=>"...",
'currency'=>"...",
.
.
.
'timezone'=>"...");
$result = $client->post('/"object_type"/', $query);

```

**PUT REQUESTS:**

- To update an object, make a put resquest, passing in the path along with an array which includes the parameters that are being updated

```
$query = array('timezone'=>'"updated_value"');
$result = $client->put('/"object_type"/"object_uid"', $query);

```

**DELETE REQUESTS:**

- To delete an object, make a delete request, passing in the path including the uids/id of the object that is to be deleted:

```
$result = $client->delete('/"object_type"/"object_uid"');
Ex) $result = $client->delete('/site/6003a1c2-e000-fff1-8123-0c9a66');

```

###  Health Score

22

—

LowBetter than 23% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity43

Maturing project, gaining track record

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/6e54bb15e79f8e0a58c1c541ba033d180bf511554046e700f5d456f7c66518ab?d=identicon)[chilimatic](/maintainers/chilimatic)

---

Top Contributors

[![chilimatic](https://avatars.githubusercontent.com/u/6705416?v=4)](https://github.com/chilimatic "chilimatic (7 commits)")[![chriscrichton](https://avatars.githubusercontent.com/u/896361?v=4)](https://github.com/chriscrichton "chriscrichton (7 commits)")[![jagriti-agrawal](https://avatars.githubusercontent.com/u/13735011?v=4)](https://github.com/jagriti-agrawal "jagriti-agrawal (2 commits)")[![laurb9](https://avatars.githubusercontent.com/u/5796634?v=4)](https://github.com/laurb9 "laurb9 (2 commits)")

### Embed Badge

![Health badge](/badges/chilimatic-openxclient/health.svg)

```
[![Health](https://phpackages.com/badges/chilimatic-openxclient/health.svg)](https://phpackages.com/packages/chilimatic-openxclient)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
