dev-master
9999999-dev http://github.com/it-strategy/yandex-apiPHP library for Yandex API
MIT
The Requires
- php >=5.3.0
- ext-curl *
api php yandex
Wallogit.com
2017 © Pedro Peláez
PHP library for Yandex API
PHP library for Yandex API, (*1)
Full Yandex API documentation available at http://api.yandex.ru/, (*2)
Direct API used in example below available at http://api.yandex.ru/direct/doc/concepts/About.xml Authentication instructions available at http://api.yandex.ru/direct/doc/concepts/auth-token.xml, (*3)
<?php
use Yandex\Direct;
// create api
$api = new Direct('https://api.direct.yandex.ru/live/v4/json/', '443', $appId, $appToken);
// get client info for your login
$infos = $api->GetClientInfo();
// get client info for login 'bill'
$infos = $api->GetClientInfo('bill');
// get client info for logins 'bill' and 'joe'
$infos = $api->GetClientInfo(array('bill', 'joe'));
// and so on.. read full API documentation
PHP library for Yandex API
MIT
api php yandex