将PayPal返回URL设置为localhost

Tec*_*hie 9 php paypal sandbox payment-gateway paypal-sandbox

我正在尝试集成Paypal,我正在使用沙盒.我按照下面问题中接受的答案的步骤.设置PayPal返回URL并使其自动返回?

但是当我尝试输入URL时,Paypal会返回以下错误.

We were unable to validate the URL you have entered. Please check your entry and try again.
Run Code Online (Sandbox Code Playgroud)

我试图设置的URL是http://localhost:8888/paypal/success.php.

此外,我尝试使用下面的表单发送返回URL.

<input type="hidden" name="return" value="http://localhost:8888/paypal/success.php">
Run Code Online (Sandbox Code Playgroud)

这两种方法对我都不起作用.

完整形式

<form method="post" action="https://www.sandbox.paypal.com/cgi-bin/webscr">
<!-- Identify your business so that you can collect the payments. -->
<input type="hidden" value="dasun_1358759028_biz@archmage.lk" name="business">
<!-- Specify a Buy Now button. -->
<input type="hidden" value="_xclick" name="cmd">
<!-- Specify details about the item that buyers will purchase. -->
<input type="hidden" value="AM Test Item" name="item_name">
<input type="hidden" value="22.16" name="amount">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" value="item_number" name="item_number">
<input type="hidden" name="return" value="http://localhost:8888/paypal/success.php">
<!-- Display the payment button. -->
<input type="image" name="submit" border="0" src="https://www.paypalobjects.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.paypalobjects.com/en_US/i/scr/pixel.gif" >
</form> 
Run Code Online (Sandbox Code Playgroud)

如何在我的开发PC上测试?

小智 14

如果您尝试指定IP地址而不是localhost怎么办?

无法在远程计算机上解析本地主机.它只是知道localhost语句的本地DNS,并且是127.0.0.1.

http://your-IP-address:8888/paypal/success.php
Run Code Online (Sandbox Code Playgroud)

  • 通常无法从外部系统访问开发人员计算机。除非与 PayPal 在同一网络中,否则提供本地 IP 地址不起作用。 (2认同)

mun*_*llj 5

您可以为您的网站创建一些URL别名,并将其添加到您的hosts文件(http://en.wikipedia.org/wiki/Hosts_(file)).然后将该URL作为返回URL传递给paypal.它们只是触发浏览器内的重定向到该位置,此时主机文件将其解析到本地开发服务器.

例如:在主机文件中添加一行,如: 127.0.0.1 local.mywebdomain.com

然后在您的PayPal按钮中,为返回参数传递相同的URL (例如<input type="hidden" name="return" value="http://local.mywebdomain.com/success.php">)