1

我正在尝试通过 3 个经典步骤进行付款:

1) 带有 PayNow 按钮的订单页面

2) 贝宝支付

3) 重定向到“支付完成页面”

我想要实现的是从第 1 步到第 3 步的 ID。我试图做的是将此字段插入到“自定义”变量中,例如:

<input type="hidden" name="custom" value="--Server Code--">

贝宝付款后,贝宝将我重定向到我的页面:

http://www.mysite.cm/tx=blalba?aaaa

在此 URL 中没有自定义字段。如果我通过 API 联系 PayPal 以获取销售详细信息,我将得不到任何与我的自定义字段相关的信息。

我做错了什么?我正在考虑使用cookies,但我更喜欢以标准方式进行。

  <form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
        <input type="hidden" name="cmd" value="_s-xclick">
        <input type="hidden" name="return" value="testestest">
        <input type="image" src="https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.">
        <img alt="" border="0" src="https://www.paypalobjects.com/it_IT/i/scr/pixel.gif" width="1" height="1">
    </form>
4

2 回答 2

3

PayPal 自定义变量在 IPN(即时付款通知)中返回,而不是在用户完成付款后返回您的网站时返回。

在您的情况下,只需一个会话变量就足够了。

编辑:

另一种方法可能是在“返回”字段中添加正确的 url 值。例子:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
    <input type="hidden" name="cmd" value="_xclick">
    <input type="hidden" name="return" value="http://www.website.com?pram=value">
    <input type="hidden" name="cancel" value="http://www.website.com?param=value">
    <input type="hidden" name="business" value="yourpaypal@email.com">
    <input type="hidden" name="item_name" value="Test">
    <input type="hidden" name="amount" value="9.00">
    <input type="hidden" name="currency_code" value="EUR">

    <input type="image" src="https://www.paypalobjects.com/it_IT/IT/i/btn/btn_buynowCC_LG.gif" border="0" name="submit" alt="PayPal è il metodo rapido e sicuro per pagare e farsi pagare online.">
   <img alt="" border="0" src="https://www.paypalobjects.com/it_IT/i/scr/pixel.gif" width="1" height="1">
</form>
于 2016-07-01T06:48:06.133 回答
2

现有的答案已经提到IPN是要走的路,但缺少的是如何实际实现这一点的更多信息。

我最近不得不自己做这件事,所以这是对我有用的解决方案:

首先,您需要将您的 ID 添加到“立即付款”按钮的 HTML 中,例如添加到“自定义”变量中,如问题中所示。

在我自己的实现中,我在使用“自定义”变量时遇到了一些问题(不再记得细节了),所以我将我的 ID 作为 URL 参数传递给 IPN“通知”URL:

<input type="hidden" name="notify_url" value="https://example.com/notify/?id=xyz">

这是我的按钮的完整 HTML 代码:

<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
    <input type="hidden" name="cmd" value="_s-xclick">
    <input type="hidden" name="hosted_button_id" value="ABCDEFGHILJKLM">
    <table>
    <tr><td><input type="hidden" name="on0" value="Betrag">Betrag</td></tr><tr><td><select name="os0">
        <option value="Gebuehr">Gebuehr €3,50 EUR</option>
        <option value="Gebuehr und Spende">Gebuehr und Spende €5,00 EUR</option>
    </select> </td></tr>
    </table>
    <input type="hidden" name="currency_code" value="EUR">
    <input type="image" src="https://www.paypalobjects.com/de_DE/DE/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="Jetzt einfach, schnell und sicher online bezahlen – mit PayPal.">
    <img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1" height="1">
    <input type="hidden" name="notify_url" value="https://example.com/notify/?id=xyz">
</form>

付款过程完成后,PayPal 会在我的通知 URL 中发布一条IPN 消息,其中包含有关交易的大量信息(更多信息请参见链接)

我的 ID 是通过 URL 参数传递的,所以我可以像这样(在 PHP 中)得到它:

$uid = "";
if (!empty($_GET['id'])) {
    $uid = $_GET['id'];
}

当然,您需要检查 IPN 呼叫是否真的来自 PayPal

于 2017-05-26T13:32:58.487 回答