PHP code example of magdv / kontur-logistics
1. Go to this page and download the library: Download magdv/kontur-logistics 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/ */
magdv / kontur-logistics example snippets
Надо сделать свой локальный класс для сериализатора
declare(strict_types=1);
use GuzzleHttp\Client;
use MagDv\Logistics\ClientConfig;
class LocalConfig extends ClientConfig
{
public function getCachePath(): ?string
{
return 'dfdf/df/df/df'; // здесь указываем путь, куда кешируем. Не обязательно, но желательно. Влияет на скорость
}
public function getIsDebug(): bool
{
return false; // тут надо указать, включать ли дебаг в дев режиме можете включить, чтобы видеть ошибки
}
public function getUrl(): string
{
return 'URL к апи';
}
public function getApiKey(): string
{
return 'apiKey';
}
public function getClient(): HttpClientInterface
{
// PSR-18 совместимый клиент
return new Client();
}
}
$request = new SendWaybillRequest();
$request->waybill = 'xml content';
$request->waybillFileName = 'name.xml';
$request->waybillSignFileName = 'sign_name.sig';
$request->waybillSign = 'sig_content';
$logistics = new LogisticsDocuments(new LocalConfig());
$response = $logistics->sendWaybill($request);
// Текущий статус ответа
echo $response->statusCode;
// Проверка, что удачный запрос
echo $response->isOk();
// Проверка статуса и вывод ошибки
if (!$response->isOk()) {
echo $response->error->message;
}
$response->transportationId;