【发布时间】:2015-06-11 20:34:10
【问题描述】:
我在 PayPal 沙盒按钮中创建了一个递归支付按钮。但是在付款后从PayPal支付返回测试账户时,IPN响应没有返回。在查看IPN历史时,显示IPN消息已经生成。
ipn_POST_data 在侦听器中为空。
简单的订阅按钮也是如此。
【问题讨论】:
标签: paypal paypal-ipn
我在 PayPal 沙盒按钮中创建了一个递归支付按钮。但是在付款后从PayPal支付返回测试账户时,IPN响应没有返回。在查看IPN历史时,显示IPN消息已经生成。
ipn_POST_data 在侦听器中为空。
简单的订阅按钮也是如此。
【问题讨论】:
标签: paypal paypal-ipn
我得到了答案
我们需要将变量 'rm' 设置为 2。
<input type="hidden" name="rm" value="2">
0 – all shopping cart payments use the GET method
1 – the buyer's browser is redirected to the return URL by using the GET method, but no payment variables are included
2 – the buyer's browser is redirected to the return URL by using the POST method, and all payment variables are included
默认情况下,rm 的值为 0。
谢谢...
【讨论】: