PHP code example of papihack / payexpresse-php-client
1. Go to this page and download the library: Download papihack/payexpresse-php-client 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/ */
papihack / payexpresse-php-client example snippets
\PayExpresse\Config::setApiKey('your_api_key');
\PayExpresse\Config::setApiSecret('your_api_secret');
/*
* you can set one of this two environment TEST or PROD
* you can just set the env mode via \PayExpresse\Enums\Env::TEST or \PayExpresse\Enums\Env::PROD
* Like the following example
* !!! By default env is PROD !!!
* You can also directly set test or prod as a string if you want
* Like \PayExpresse\Config::setEnv('test') or \PayExpresse\Config::setEnv('prod')
*/
\PayExpresse\Config::setEnv(\PayExpresse\Enums\Env::PROD);
/*
* The PayExpresse\Enums\Currency class defined authorized currencies
* You can change XOF (in the following example) by USD, CAD or another currency
* All allowed currencies are in \PayExpresse\Enums\Currency class
* !!! Notice that XOF is the default currency !!!
*/
\PayExpresse\Config::setCurrency(\PayExpresse\Enums\Currency::XOF);
/* !!! Note that if you decide to set the ipn_url, it must be in https !!! */
\PayExpresse\Config::setIpnUrl('your_ipn_url');
\PayExpresse\Config::setSuccessUrl('your_success_url');
\PayExpresse\Config::setCanceUrl('your_cancel_url');
/*
* if you want the mobile success or cancel page, you can set
* the following parameter
*/
\PayExpresse\Config::setIsMobile(true);
$article_price = 15000;
$article = new \PayExpresse\Invoice\InvoiceItem('article_name', $article_price, 'command_name', 'ref_command');
/* You can also add custom data or fields like this */
\PayExpresse\CustomField::set('your_field_name', 'your_field_value');
/* Make the payment request demand to the API */
\PayExpresse\PayExpresse::send($article);
/* Get the API Response */
$response = [
'success' => \PayExpresse\ApiResponse::getSuccess(),
'errors' => \PayExpresse\ApiResponse::getErrors(),
'token' => \PayExpresse\ApiResponse::getToken(),
'redirect_url' => \PayExpresse\ApiResponse::getRedirectUrl(),
];
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.