【发布时间】:2020-08-17 05:17:08
【问题描述】:
是否可以在 PayPal 结账时添加自定义运费,例如商品?
这里有一些带有静态值的示例代码供参考。
var paypalAmount = {"value":"78.95","breakdown":{"item_total":{"currency_code":"USD","value":"78.95"}}};
var paypalItems = [{"name":"sample item","unit_amount":{"currency_code":"USD","value":"39.95"},"quantity":"1","category":"PHYSICAL_GOODS"},{"name":"sample item2","unit_amount":{"currency_code":"USD","value":"39.00"},"quantity":"1","category":"PHYSICAL_GOODS"}];
createOrder: function(data, actions) {
return actions.order.create({
purchase_units: [{
amount: paypalAmount,
items: paypalItems
}],
headers: {
'content-type': 'application/json'
},
});
}
【问题讨论】:
标签: paypal paypal-sandbox