我正在localhost上工作一个codeigniter项目,我在其中使用paypal沙盒付款方式进行付款。
我遇到问题,返回网址不会自动重定向,当我点击返回商家按钮时,它也没有将任何参数返回到我的网址。
我设置了paypal的所有设置,我已经从paypal帐户设置了自动返回并且还设置了返回URL但仍然没有得到任何响应。我正在使用此表单和参数。
$paypal_url='https://www.sandbox.paypal.com/cgi-bin/webscr';
<form action="<?php echo $paypal_url; ?>" method="post" name="frmPayPal1">
<input type="hidden" name="business" value="<?php echo $paypal_id; ?>">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="item_name" value="PHPGang Payment">
<input type="hidden" name="item_number" value="1">
<input type="hidden" name="userid" value="1">
<input type="hidden" name="credits" value="510">
<input type="hidden" name="amount" value="20">
<input type="hidden" name="cpp_header_image" value="http://112.196.5.114/psychics/component/images/logo.png">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="currency_code" value="USD">
<input type="hidden" name="notify_url" value="http://112.196.5.114/psychics/dashboard/profile/return_url">
<input type="hidden" name="cancel_return" value="http://112.196.5.114/psychics/dashboard/profile/cancel_return">
<input type="hidden" name="return" value="http://112.196.5.114/psychics/dashboard/profile/return_url">
<button type="submit" class="btn btn-success"> Add Funds</button>
</form>
我没有得到我的错。
答案 0 :(得分:1)
您的代码很好,只需在代码中添加以下行,清除浏览器的缓存Cookie并再试一次:
&LT;输入类型=&#39;隐藏&#39;名称=&#39; RM&#39;值=&#39; 2&#39;&GT;
注1:添加上述代码后,PayPal将以POST方式返回响应。
注2:重新检查并确认必须从您的PayPal商家验证帐户启用自动退货。
您可以在PHP标记的返回页面中添加以下行来检查响应:
的print_r($ _ REQUEST);或print_r($ _ POST);
有关PayPal按钮参数的更多帮助:check documentation