PHP code example of asci / omnipay-sofort
1. Go to this page and download the library: Download asci/omnipay-sofort 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/ */
asci / omnipay-sofort example snippets
$gateway = Omnipay::create('Sofort');
$gateway->initialize(array(
'username' => 'your_account_id',
'password' => 'password',
'projectId' => 'sofort_project_id',
'testMode' => true
));
$response = $gateway->authorize(array(
'amount' => 199.00,
'description' => 'Google Nexus 4',
))->send();
$transactionReference = $response->getTransactionReference();
if ($response->isRedirect()) {
// redirect to offsite payment gateway
$response->redirect();
} else {
// payment failed: display message to customer
echo $response->getMessage();
}
$gateway = Omnipay::create('Sofort');
$gateway->initialize(array(
'username' => 'your_account_id',
'password' => 'password',
'projectId' => 'sofort_project_id',
'testMode' => true
));
$response = $gateway->completeAuthorize(array(
'transactionId' => $transactionReference,
))->send();
if ($response->isSuccessful()) {
// payment was successful
print_r($response);
} else {
// payment failed: display message to customer
echo $response->getMessage();
}