PayPal 授权/捕获

发布于 2024-11-14 21:00:05 字数 108 浏览 4 评论 0原文

使用PayPal IPN,我们可以实现延迟付款吗?完美的例子是 Groupon,只有在交易提示时才对卡收费。有人可以阐明使用 PayPal IPN 的实施部分以及如何在交易提示时同时对多张卡进行收费吗?

Using PayPal IPN, can we implement delayed payment. Perfect example is Groupon where card is charged only when deal is tipped. Can someone throw light on implementation part using PayPal IPN and also how multiple cards can be charged at once when deal is tipped.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ヅ她的身影、若隐若现 2024-11-21 21:00:05

对于授权和捕获:

要进行付款授权,您必须在 paymentmethod 参数中传递“authorization”而不是“sale”,

  <input type="hidden" name="paymentaction" value="authorization" />

因此,对于这种类型的付款,paypal 不会立即向发件人收取费用,而是会等待接收方确认。要捕获此付款,有两种方法可供使用:

  1. 接收方可以单击帐户中的捕获按钮
  2. 它可以通过 API 来完成 - 捕获付款使用 DoCapture 并作废付款使用DoVoid

For Authorize And Capture:

To make a payment authorize you will have to pass "authorization" in paymentmethod parameter instead of "sale"

  <input type="hidden" name="paymentaction" value="authorization" />

So, For this type of payment, paypal will not charge the sender immediately but will wait till receiver confirmation. To capture this payment two methods are available:

  1. Receiver will either click on capture button in account
  2. It can be done via a API - to capture the payment use DoCapture and void the payment use DoVoid
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文