1. Go to this page and download the library: Download jrodella/payment-ws-api 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/ */
jrodella / payment-ws-api example snippets
try {
$ctxMode = 'TEST';
$keyTest = '1111111111111111';
$keyProd = '2222222222222222';
$shopId = '12345678';
// proxy options if any
$options = array(
'proxy_host' => 'host',
'proxy_port' => '3128',
'proxy_login' => 'login',
'proxy_password' => 'password'
);
$wsApi = new \Lyranetwork\WsApi($options, $url);
$wsApi->init($shopId, $ctxMode, $keyTest, $keyProd);
// example of getPaymentDetails call
$queryRequest = new \Lyranetwork\QueryRequest();
$queryRequest->setUuid($uuid); // a known transaction UUID
$getPaymentDetails = new \Lyranetwork\GetPaymentDetails($queryRequest);
$getPaymentDetails->setQueryRequest($queryRequest);
$requestId = $wsApi->setHeaders();
$getPaymentDetailsResponse = $wsApi->getPaymentDetails($getPaymentDetails);
$wsApi->checkAuthenticity();
$wsApi->checkResult(
$getPaymentDetailsResponse->getGetPaymentDetailsResult()->getCommonResponse(),
array(
'INITIAL', 'WAITING_AUTHORISATION', 'WAITING_AUTHORISATION_TO_VALIDATE',
'UNDER_VERIFICATION', 'AUTHORISED', 'AUTHORISED_TO_VALIDATE', 'CAPTURED', 'CAPTURE_FAILED'
) // pending or accepted payment
);
} catch(\SoapFault $f) {
log("[$requestId] SoapFault with code {$f->faultcode}: {$f->faultstring}.", Zend_Log::WARN);
// friendly message here
} catch(\UnexpectedValueException $e) {
log("[$requestId] getPaymentDetails error with code {$e->getCode()}: {$e->getMessage()}.", Zend_Log::ERR);
if ($e->getCode() === -1) {
// manage authentication error here
} elseif ($e->getCode() === 1) {
// merchant does not subscribe to WS option
} else {
// manage other unexpected response here
}
} catch (Exception $e) {
log("[$requestId] Exception with code {$e->getCode()}: {$e->getMessage()}", Zend_Log::ERR);
// friendly message here
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.