PHP code example of easytransac / easytransac-sdk-php
1. Go to this page and download the library: Download easytransac/easytransac-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/ */
easytransac / easytransac-sdk-php example snippets
// Don't forget to _.'/vendor/easytransac/easytransac-sdk-php/sdk/EasyTransac/autoload.php');
// Provide the API key
EasyTransac\Core\Services::getInstance()->provideAPIKey('YOUR_API_KEY_HERE');
// For testing, you can activate logs
EasyTransac\Core\Services::getInstance()->setDebug(true);
// Connexion timeout in second
EasyTransac\Core\Services::getInstance()->setRequestTimeout(30);
// You can change the log directory (by default the path is the running script path)
Logger::getInstance()->setFilePath('YOU_CUSTOM_PATH');
$customer = (new EasyTransac\Entities\Customer())
->setFirstname('Demo')
->setLastname('Mini SDK')
->setCity('Strasbourg')
->setUid('a1b2c3d4');
$card = (new EasyTransac\Entities\CreditCard())
->setNumber('1111111111111111')
->setMonth('10')
->setYear('2017')
->setCVV('123');
$transaction = (new EasyTransac\Entities\DirectTransaction())
->setAmount(100)
->setClientIp('127.0.0.1')
->setCustomer($customer)
->setCreditCard($card);
$dp = new EasyTransac\Requests\DirectPayment();
$response = $dp->execute($transaction);
if ($response->isSuccess())
{
$transactionItem = $response->getContent();
// Check if the 3DSecure is forced by the server on this transaction,
// if yes, then we must use the 3DS url to finish the transaction
if ($transactionItem->getSecure())
{
// Using of the 3DS url
// You have to call this url to proceed the 3DS process
// $transactionItem->getSecureUrl();
}
else
{
// Shows the transaction status and id
var_dump($transactionItem->getStatus());
var_dump($transactionItem->getTid());
}
}
else
{
var_dump($response->getErrorMessage());
}
// EasyTransac notifies you for the payment status
// Then in your website, you have to create a script to receive the notification
$response = \EasyTransac\Core\PaymentNotification::getContent($_POST, $myApiKey);
// Response of type \EasyTransac\Entities\Notification
var_dump($response->toArray());
// Payment status
var_dump($response->getStatus());
// If you have a doubt about a value that does not exist in the response,
// you can print the superglobal $_POST, all notification values are there:
var_dump($_POST);
// You can get the complete response from the api with these methods bellow
$dp = new EasyTransac\Requests\DirectPayment();
$response = $dp->execute($transaction);
var_dump($response->getRealJsonResponse()); // Jsonified response (stdClass object)
var_dump($response->getRealArrayResponse()); // Array item
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.