我找到了this页面,告诉我们如何执行Paypal付款。
它没有说是否可以延迟使用Paypal执行付款的最后一步。
可以推迟吗?以后可以使用他们的API捕获付款,但是当您通过Paypal发送用户授权付款时,这似乎不会涵盖。
答案 0 :(得分:2)
授权& PayPal钱包付款也可以获取(如文档here所示)。只要您将intent
设置为authorize
,它就会创建授权。
即
{
"intent":"authorize",
"redirect_urls":{
"return_url":"http://<return URL here>",
"cancel_url":"http://<cancel URL here>"
},
"payer":{
"payment_method":"paypal"
},
"transactions":[
{
"amount":{
"total":"7.47",
"currency":"USD"
},
"description":"This is the payment transaction description."
}
]
}