我正在寻找可以从JS客户端传递的参数,同时在Paypal中创建订单。
下面是示例代码
createOrder: function(data, actions) {
return actions.order.create({
"purchase_units": [{
"amount": {
"currency_code": "USD",
"value": "100",
"breakdown": {
"item_total": { /* Required when including the `items` array */
"currency_code": "USD",
"value": "100"
}
}
},
"items": getItemsArray()
});
},
根据最新的Paypal更新,此功能已被删除。