gpt4 book ai didi

post - 我需要使用服务器集成中的 paypal createorder 函数将我的金额从应用程序传递到 Paypal。我怎样才能通过 body 的数量。?

转载 作者:太空宇宙 更新时间:2023-11-03 16:39:23 25 4
gpt4 key购买 nike

<script>
// Render the PayPal button into #paypal-button-container

paypal.Buttons({

// Set up the transaction
createOrder: function(data, actions) {
return fetch('payPalPayment.html', {
method: 'post',
body: JSON.stringify( {
"purchase_units": [
{
"amount": {
"currency_code": "USD",
"value": 100.00
}
}]
})
}).then(function(res) {
return res.json();
}).then(function(data) {
return data.paypalToken;
});
},

// Finalize the transaction
onApprove: function(data, actions) {
return fetch('paypalGetExpressCheckout.html', {
method: 'post'
}).then(function(res) {
return res.json();
}).then(function(details) {
// Show a success message to the buyer
alert('Transaction completed by ' + details.payer.name.given_name + '!');
});
}


}).render('#paypal-button-container');
</script>
this above code does not show the amount when I login

最佳答案

我遇到了类似的问题,对我有用的是我使用了 createOrder 的基本集成,因为我需要的东西驻留在客户端中。

https://developer.paypal.com/docs/checkout/integrate/#4-set-up-the-transaction

paypal.Buttons({
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
amount: {
currency_code: "USD",
value: '100.00'
}
}]
});
},
onApprove: function(data, actions) {
return fetch('paypalGetExpressCheckout.html', {
method: 'post'
}).then(function(res) {
return res.json();
}).then(function(details) {
// Show a success message to the buyer
alert('Transaction completed by ' + details.payer.name.given_name + '!');
});
}
}).render('#paypal-button-container');

关于post - 我需要使用服务器集成中的 paypal createorder 函数将我的金额从应用程序传递到 Paypal。我怎样才能通过 body 的数量。?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57997057/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com