Paypal动态返回网址无法正常工作

时间:2014-04-24 09:39:08

标签: php paypal

我正在尝试支付PayPal付款,但在付款完成后返回我的页面时遇到问题。 我想动态地这样做(所以我不想在paypal的帐户选项中设置它,因为我可能将此帐户用于其他事情)。这是我发送给paypal的表格:

<form id="paypalForm" action="https://www.sandbox.paypal.com/cgi-bin/webscr" method="POST"> 
    <input type="hidden" name="cmd" value="_cart">
    <input type="hidden" name="notify_url" value="http://zopomobile.es/pruebas/modules/rmaforsat/ipn_paypal.php">
    <input type="hidden" name="item_name_1" value="Pago de su orden a Zopomobile.">
    <input type="hidden" name="item_number_1" value="1">
    <input type="hidden" name="amount_1" value="259.12">
    <input type="hidden" name="currency_code" value="EUR">
    <input type="hidden" name="custom" value="152">
    <input type="hidden" name="business" value="admin-facilitator@zopomovil.es">
    <input type="hidden" name="upload" value="1">
    <input type="hidden" name="return" value="http://zopomobile.es/pruebas">
    <input type="hidden" name="cancel" value="http://zopomobile.es/pruebas/NO">
    <input type="hidden" name="rm" value="2">

</form>

我试过改变&#34;返回&#34;变量为&#34; return_url&#34;,仍然无效。

1 个答案:

答案 0 :(得分:0)

如果您想自动重定向到“http://www.zopomobile.es/pruebas/” 然后你需要在你的PayPal个人资料上打开“自动退货”。 现在,您的个人资料中的“自动退货”为“关闭”。

返回参数为return

https://www.sandbox.paypal.com/us/cgi-bin/webscr?cmd=_profile-website-payments

检查上面的链接以打开“自动返回”功能。