-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathget_payment_token_erip.php
48 lines (34 loc) · 1.47 KB
/
get_payment_token_erip.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
require_once __DIR__ . '/../BeGateway.php';
require_once __DIR__ . '/test_shop_data.php';
BeGateway\Logger::getInstance()->setLogLevel(BeGateway\Logger::DEBUG);
$transaction = new BeGateway\GetPaymentToken;
$cc = new \BeGateway\PaymentMethod\CreditCard;
$erip = new \BeGateway\PaymentMethod\Erip([
'order_id' => 1234,
'account_number' => '1234',
'service_no' => '99999999',
'service_info' => ['Order 1234'],
]);
$transaction->addPaymentMethod($cc);
$transaction->addPaymentMethod($erip);
$amount = rand(100, 1000);
$transaction->money->setAmount($amount);
$transaction->money->setCurrency('BYN');
$transaction->setDescription('Тестовая оплата');
$transaction->setTrackingId('my_custom_variable');
$transaction->setLanguage('ru');
$transaction->setTestMode(true);
$transaction->setNotificationUrl('http://www.example.com/notify');
$transaction->setSuccessUrl('http://www.example.com/success');
$transaction->setDeclineUrl('http://www.example.com/decline');
$transaction->setFailUrl('http://www.example.com/fail');
$transaction->setCancelUrl('http://www.example.com/cancel');
// No available to make payment for the order in 2 days
$transaction->setExpiryDate(date('Y-m-d', 3 * 24 * 3600 + time()) . 'T00:00:00+03:00');
$transaction->customer->setEmail('[email protected]');
$response = $transaction->submit();
echo 'Transaction message: ' . $response->getMessage() . PHP_EOL;
if ($response->isSuccess()) {
echo 'Token: ' . $response->getToken() . PHP_EOL;
}