-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathget_payment_token.php
45 lines (35 loc) · 1.55 KB
/
get_payment_token.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
<?php
require_once __DIR__ . '/../BeGateway.php';
require_once __DIR__ . '/test_shop_data.php';
BeGateway\Logger::getInstance()->setLogLevel(BeGateway\Logger::DEBUG);
$transaction = new BeGateway\GetPaymentToken;
$amount = rand(1, 100);
$transaction->money->setAmount($amount);
$transaction->money->setCurrency('EUR');
$transaction->setDescription('test');
$transaction->setTrackingId('my_custom_variable');
$transaction->setLanguage('en');
$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');
$transaction->customer->setFirstName('John');
$transaction->customer->setLastName('Doe');
$transaction->customer->setCountry('LV');
$transaction->customer->setAddress('Demo str 12');
$transaction->customer->setCity('Riga');
$transaction->customer->setZip('LV-1082');
$transaction->customer->setIp('127.0.0.1');
$transaction->customer->setEmail('[email protected]');
$transaction->customer->setBirthDate('1970-01-12');
// set transaction type. Default - payment
// $transaction->setPaymentTransactionType();
// $transaction->setAuthorizationTransactionType();
//$transaction->setTokenizationTransactionType();
$response = $transaction->submit();
echo 'Transaction message: ' . $response->getMessage() . PHP_EOL;
if ($response->isSuccess()) {
echo 'Token: ' . $response->getToken() . PHP_EOL;
}