gpt4 book ai didi

paypal - 创建一个带有动态通知 url 的 paypal 捐赠按钮?

转载 作者:太空宇宙 更新时间:2023-11-03 16:24:27 24 4
gpt4 key购买 nike

我一直在抨击 Paypal 开发者门户。它缺少信息,有过时的信息或链接只是转到 404s。我正在尝试做一些非常简单的事情。

我正在尝试创建一个带有包含自定义参数的通知 URL 的基本按钮。例如:www.mydomain.com/paypalipn.html?clientID=1232312321

每次我在沙盒门户中创建按钮时,它都会创建一个不可自定义的 HTML 按钮:

<form action="https://www.sandbox.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="HFYXEE3BN8RM2">
<input type="image" src="https://www.sandbox.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.sandbox.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>

有没有办法使用 Paypal 按钮在代码中添加参数来自定义通知 url?

最佳答案

您正在创建一个托管按钮,其中不能有动态 URL。您需要创建一个非托管/解密按钮才能使用动态 IPN URL。

例如:

<form action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="business" value="your_email.com">
<input type="hidden" name="item_name" value="test">
<input type="hidden" name="notify_url" value="http://www.yourdynamicIPNurl/ipn_code.php">
<input type="hidden" name="amount" value="1.00">
<input type="image" src="https://www.paypalobjects.com/en_AU/i/btn/btn_buynow_SM.gif" border="0" name="submit" alt="PayPal — The safer, easier way to pay online.">
<img alt="" border="0" src="https://www.paypalobjects.com/en_AU/i/scr/pixel.gif" width="1" height="1">
</form>

关于paypal - 创建一个带有动态通知 url 的 paypal 捐赠按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38480666/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com