1

我发现这个页面告诉如何执行 Paypal 付款。

它没有说是否可以延迟使用 Paypal 执行付款的最后一步。

可以延期吗?稍后可以使用他们的 API 捕获付款,但是当您通过 Paypal 向用户发送授权付款时,这似乎不包括在内。

4

1 回答 1

3

授权和捕获(如此处所述)也可用于 PayPal 钱包付款。只要您将您的设置intentauthorize,它将创建一个授权。

IE

{
  "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."
    }
  ]
}
于 2013-08-16T16:11:12.950 回答