A previous version of API available in v2 branch here.
- php: >= 5.3.0
- ext-curl: *
Download the file PublisherApi.php and place it in one directory with the file for the successful creation of the order.
In the order creation file, paste this code:
require('PublisherApi.php');
$api = new \Aff1\PublisherApi();
$api->setProperty('api_key','{YOUR_API_KEY}');
$api->setProperty('target_hash','{TARGET_HASH}');
$api->setProperty('country_code','{COUNTRY_CODE}');
$api->makeOrder($_REQUEST['name'], $_REQUEST['phone']);
Note: It is assumed that the form has name fields for the name of the buyer,
and phone - the phone number of the buyer.
composer require aff1/publisher-api
$api = new \Aff1\PublisherApi();
$api->setProperty('api_key','{YOUR_API_KEY}');
$api->setProperty('target_hash','{TARGET_HASH}');
$api->setProperty('country_code','{COUNTRY_CODE}');
Создание заказа:
$api->makeOrder($_REQUEST['name'], $_REQUEST['phone']);
Note: It is assumed that the form has name fields for the name of the buyer,
and phone - the phone number of the buyer.
Предыдущая версия API доступна в v2 ветке здесь.
- php: >= 5.3.0
- ext-curl: *
Скачайте файл PublisherApi.php и расположите его в одной директории с файлом успешного создания заказа.
В файле успешного создания заказа вставьте данный код:
require('PublisherApi.php');
$api = new \Aff1\PublisherApi();
$api->setProperty('api_key','{YOUR_API_KEY}');
$api->setProperty('target_hash','{TARGET_HASH}');
$api->setProperty('country_code','{COUNTRY_CODE}');
$api->makeOrder($_REQUEST['name'], $_REQUEST['phone']);
Примечание: Предполагается, что форма имеет поля name для имени покупателя,
и phone - номер телефона покупателя.
composer require aff1/publisher-api
$api = new \Aff1\PublisherApi();
$api->setProperty('api_key','{YOUR_API_KEY}');
$api->setProperty('target_hash','{TARGET_HASH}');
$api->setProperty('country_code','{COUNTRY_CODE}');
Создание заказа:
$api->makeOrder($_REQUEST['name'], $_REQUEST['phone']);
Примечание: Предполагается, что форма имеет поля name для имени покупателя,
и phone - номер телефона покупателя.