2017 © Pedro Peláez
 

library yandex-api

PHP library for Yandex API

image

its/yandex-api

PHP library for Yandex API

  • Friday, November 15, 2013
  • by agladkov
  • Repository
  • 2 Watchers
  • 0 Stars
  • 18 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

yandex-api

PHP library for Yandex API, (*1)

Documentation

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)

Usage

<?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

The Versions

15/11 2013

dev-master

9999999-dev http://github.com/it-strategy/yandex-api

PHP library for Yandex API

  Sources   Download

MIT

The Requires

  • php >=5.3.0
  • ext-curl *

 

api php yandex