我正在将PayPal付款集成到正在开发的Web应用程序中。我需要为一笔交易创建一个授权,在该笔交易中我锁定了一笔钱(比如说20欧元),然后在交易结束时我完成了交易,而我只拿走了我需要拿走的钱(因此,最终费用为15欧元,我退还给用户5欧元。)
此工作流程目前正在沙盒帐户上运行,但现在我想测试一些在开始新交易时可能发生的错误,例如,当用户没有足够的钱(20€)时,我需要锁定才能开始新的交易。
我发现此文档(https://developer.paypal.com/docs/api/test-values/#invoke-negative-testing)的位置是To trigger the SENDER_EMAIL_UNCONFIRMED simulation response, set the items[0]/note value to ERRPYO002 in the POST v1/payments/payouts call.
,其中包含以下代码:
curl -X POST https://api.sandbox.paypal.com/v1/payments/payouts \
-H "content-type: application/json" \
-H "Authorization: Bearer Access-Token" \
-d '{
"sender_batch_header": {
"sender_batch_id": "1524086406556",
"email_subject": "This email is related to simulation"
},
"items": [
{
"recipient_type": "EMAIL",
"receiver": "payouts-simulator-receiver@paypal.com",
"note": "ERRPYO002",
"sender_item_id": "15240864065560",
"amount": {
"currency": "USD",
"value": "1.00"
}
}]
}'
所以我想我需要将错误代码(例如ERRPYO002
)传递到请求正文中的note
字段。
我正在使用checkd sdk,目前我的js代码如下:
const buttonOpts = {
env: 'sandbox',
client: { production: $scope.key, sandbox: $scope.key },
style: {
label: 'paypal',
size: 'medium',
shape: 'rect',
color: 'blue',
tagline: false,
},
validate: actions => {
// stuff
},
payment: (data, actions) => {
return actions.payment.create({
intent: 'authorize',
payer: { payment_method: 'paypal' },
transactions: [
{
amount: {
total: '20.00',
currency: 'EUR',
},
description: 'My description',
},
],
});
},
onAuthorize: data => {
// Sending data.paymentID and data.payerID to my backend to confirm the new transaction
},
onCancel: () => {
// stuff
},
onError: err => {
console.log(err);
// stuff
},
};
Paypal.Button.render(buttonOpts, '#paypal-button');
我想我需要将模拟错误所需的代码传递给我的actions.payment.create
对象参数,但是由于我的工作流程与文档中的工作流程不同,所以我找不到确切的位置。
以下是PayPal允许您用于错误测试的代码: https://developer.paypal.com/docs/payouts/integrate/test-payouts/#test-values
感谢您的帮助。 非常感谢。
答案 0 :(得分:0)
好吧,我在发布此问题后实际上已经找到了解决该问题的方法。 我将把解决方案放在这里,供将来可能遇到此问题的任何人使用。
我发布的期权对象实际上是正确的,因此,在用户确认他/她想要开始新交易之后,我得到了payerID和paymentID以发送到我的后端。 在后端功能上,我更改了代码,如下所示:
const paypal = require('paypal-rest-sdk');
const paymentId = event.paymentID;
const payerId = { payer_id: event.payerID };
paypal.configure({
mode: process.env.PAYPAL_ENVIRONMENT, //sandbox or live
client_id: '<MY_CLIENT_ID>',
client_secret: '<MY_CLIENT_SECRET>',
});
paypal.payment.execute(
paymentId,
payerId,
// START NEW CODE
{
headers: {
'Content-Type': 'application/json',
'PayPal-Mock-Response': '{"mock_application_codes": "INSUFFICIENT_FUNDS"}',
},
},
// END NEW CODE
(error, payment) => {
console.error(JSON.stringify(error));
console.error(JSON.stringify(payment));
if (error) {
/*
{
"response": {
"name": "INSUFFICIENT_FUNDS",
"message": "Buyer cannot pay - insufficient funds.",
"information_link": "https://developer.paypal.com/docs/api/payments/#errors",
"debug_id": "a1b2c3d4e5f6g",
"details": [
{
"issue": "The buyer must add a valid funding instrument, such as a credit card or bank account, to their PayPal account."
}
],
"httpStatusCode": 400
},
"httpStatusCode": 400
}
*/
return callback('unhandled_error', null);
}
if (payment.state === 'approved' && payment.transactions && payment.transactions[0].related_resources && payment.transactions[0].related_resources[0].authorization) {
return callback(null, payment.transactions[0].related_resources[0].authorization.id);
}
console.log('payment not successful');
return callback('unhandled_error', null);
}
);
在请求标头中,您只需要放置一个名为PayPal-Mock-Response
的标头,其中包含要测试的错误代码,就是这样。
希望这会帮助到别人!