PHP code example of business-ru / open-api-sdk-php
1. Go to this page and download the library: Download business-ru/open-api-sdk-php library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
business-ru / open-api-sdk-php example snippets
# Текущее местоположение проекта
$projectDIR = dirname(__DIR__);
# Подключение автозагрузки
use Open\Api\OpenClient;
# Для ФФД /v1/ - 1.05
$accountUrl = 'https://check.business.ru/open-api/v1/';
# Для ФФД /v2/ - 1.2
# $accountUrl = 'https://check.business.ru/open-api/v2/';
# Данные клиента
$appID = '';
$secretKey = '';
# Создание экземпляра класса
$openApiClient = new OpenClient($accountUrl, $appID, $secretKey);