0

下面是最简单的PayPal界面形式:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" /> 
  <input type="hidden" name="cmd" value="_xclick" /> 
  <input type="hidden" name="business" value="JohnDoe2@example.com" /> 
  <input type="hidden" name="item_name" value="Purchase at the Virtual Store" /> 
  <input type="hidden" name="item_number" value="Organic-001" />
  <input type="hidden" name="amount" value="17.4" /> 
  <input type="hidden" name="currency_code" value="EUR" /> 
  <input type="hidden" name="notify_url" value="http://www.example.com/paypalnotify.php" /> 
  <input type="submit" name="submit" value="Pay now By PayPal" />
</form>

此表格特定于 PayPal 高级商业账户和给定的支付金额,具有以下关键参数:

  1. 业务=JohnDoe2@example.com。
  2. 金额=17.4 欧元。
  3. 货币代码=欧元或美元。
  4. notify_url 作为 PayPal.com 结束时的回调。

通过单击 [提交] 按钮,它执行以下操作:

  1. 它将客户重定向到 paypal.com 站点。
  2. 用户将登录到她/他的 PayPal 帐户,并验证付款。
  3. PayPal 站点将像回调一样调用 paypalnotify.php,传递指示付款是否成功、取消或无效的信息...

现在在使用 PalPal REST API 的新界面,使用PHP 开发工具包,如何进行支付?

4

1 回答 1

2

有几个选项。首先查看这些文件中的代码:

https://github.com/paypal/rest-api-sdk-php/blob/master/sample/payments/CreatePayment.php https://github.com/paypal/rest-api-sdk-php/blob/master /sample/payments/CreatePaymentUsingPayPal.php

显然它们没有任何交互形式,但它们显示了一般过程。深入研究并创建您的代码。然后,当您遇到问题时,请针对特定问题打开一个新问题。StackOverflow 不适用于“我如何”类型的问题。https://stackoverflow.com/help/on-topic

于 2013-10-04T18:21:24.883 回答