-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathUserPresentedCodePaymentTest.php
67 lines (47 loc) · 1.88 KB
/
UserPresentedCodePaymentTest.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
require '../init.php';
use Client\DefaultAlipayClient;
use Model\Amount;
use Model\Env;
use Model\Merchant;
use Model\Order;
use Model\Store;
use Request\pay\UserPresentedCodePaymentRequest;
$clientId = "T_385XSM502Y108602A";
$paymentRequestId = 'PR_' . round(microtime(true) * 1000);
$order = new Order();
$order->setOrderDescription("test order desc");
$order->setReferenceOrderId("102775745075669");
$orderAmount = new Amount();
$orderAmount->setCurrency("USD");
$orderAmount->setValue("100");
$order->setOrderAmount($orderAmount);
$merchant = new Merchant();
$merchant->setReferenceMerchantId('seller2322174590000');
$merchant->setMerchantMCC('7011');
$merchant->setMerchantName('Some_Mer');
$store = new Store();
$store->setStoreMCC('7011');
$store->setReferenceStoreId('store232217459000011');
$store->setStoreName('Some_Store');
$merchant->setStore($store);
$order->setMerchant($merchant);
$env = new Env();
$env->setStoreTerminalRequestTime(date(DATE_ISO8601));
$env->setStoreTerminalId('Some_Term_Id');
$order->setEnv($env);
$paymentAmount = new Amount();
$paymentAmount->setCurrency("USD");
$paymentAmount->setValue("100");
$paymentNotifyUrl = "https://www.alipay.com/notify";
$paymentRedirectUrl = "https://www.alipay.com";
$request = new UserPresentedCodePaymentRequest($paymentRequestId, $order, 'USD', 9000, '28888888888888888888', $paymentNotifyUrl, null);
$request->validate();
$request->setClientId($clientId);
$merchantPrivateKey = file_get_contents(__DIR__ . "/../private-pkcs1.pem");
$alipayPublicKey = file_get_contents(__DIR__ . "/../public.pem");
$alipayClient = new DefaultAlipayClient("https://open-na.alipay.com", $merchantPrivateKey, $alipayPublicKey);
$alipayResponse = $alipayClient->execute($request);
print(json_encode($request));
print('<br>-----------------------------------------------------------------------------<br>');
print(json_encode($alipayResponse));