PHP code example of cloudloyalty / client-php
1. Go to this page and download the library: Download cloudloyalty/client-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/ */
cloudloyalty / client-php example snippets
use CloudLoyalty\Api\Client;
use CloudLoyalty\Api\Generated\Model\ConfirmTicketRequest;
use CloudLoyalty\Api\Exception\TransportException;
use CloudLoyalty\Api\Exception\ProcessingException;
// Используется встроенный в библиотеку HTTP-клиент
$apiClient = (new Client())
->setProcessingKey('<ваш_ключ>');
// Используется созданный ранее клиент Guzzle
//$apiClient = (new Client())
// ->setHttpClient(new GuzzleBridgeClient($yourGuzzleClient))
// ->setProcessingKey('<ваш_ключ>');
// Передача созданного ранее PSR-3 логгера для дампа запросов
// и ответов от сервера (с уровнем debug)
//$apiClient->setLogger(new PsrBridgeLogger($yourPsrLogger));
try {
$result = $apiClient->confirmTicket(
(new ConfirmTicketRequest())
->setTxid($txid)
->setTicket($ticket)
->setReceiptNum($txid)
);
} catch (TransportException $e) {
// Ошибка обмена с сервером
} catch (ProcessingException $e) {
// Ошибка обработки запроса сервером
// $e->getCode() - код
// $e->getDescription() - описание ошибки
// $e->getHint() - детали ошибки
}
bash
composer