Skip to content

broh/publisher-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Documentation

A previous version of API available in v2 branch here.

Requirement:

  • php: >= 5.3.0
  • ext-curl: *

Installation and usage:

Manually

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

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

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 - номер телефона покупателя.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published