如何为PayPal购买按钮设置自动返回URL?

时间:2016-01-05 16:15:48

标签: url button paypal return

我正在使用html代码进行简单的Paypal购买按钮,但想知道是否可以设置自动返回网址而无需通过我自己的Paypal帐户本身进行操作?

我无法这样做,因为它是一个localhost网站(无法验证真实网站),而且我没有通过我的销售工具创建按钮。

  <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
                    <!-- Identify your business so that you can collect the payments. -->
                    <input type="hidden" name="business" value="email@email.com">
                    <!-- Specify a Buy Now button. -->
                    <input type="hidden" name="cmd" value="_xclick">
                    <!-- Specify details about the item that buyers will purchase. -->
                    <input type="hidden" name="item_name" value="Demo">
                    <input type="hidden" name="amount" value="0.01">
                    <input type="hidden" name="currency_code" value="GBP">
                    <input type="hidden" name="return" value="~/">
                    <!-- Display the payment button. -->
                    <input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_buynow_LG.gif" alt="PayPal - The safer, easier way to pay online">
                    <img alt="" border="0" width="1" height="1" src="https://www.paypal.com/en_US/i/scr/pixel.gif">
                </form>

1 个答案:

答案 0 :(得分:0)

是的,您可以设置自己的返回网址。 HTML Special Variables。您可以将此代码添加到表单中。

&#13;
&#13;
<input type="hidden" name="return" value="http://localhost" />
&#13;
&#13;
&#13;

在您的html中,您正在定义主目录的相对路径,但您需要HTTP或HTTPS URL才能使用它。这是因为paypal结账所在的页面不在您的根目录中,因此它需要一个特定的位置。