繁体   English   中英

我这样做对吗? -Paypal IPN工作

[英]Am I doing this right? - Paypal IPN Work

因此,单击购买按钮后,我当前的notify_url根本没有被点击。 这不是我的网络服务器,也不是防火墙,它与URL编码有关。 有什么想法,女士们,先生们?

PS; 我确实收到了付款,但是我的notify_url没有被点击,贝宝IPN已启用,并且由于notify_url没有被点击,我的客户无法收到他们的在线库存。 :\\

    $paypalurl = "https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amount=".urlencode($row['price']).
"&business=".urlencode($paypalemail)."&item_name=".urlencode($row['name'])."
&item_number=".urlencode($row['ID']."_".$_SESSION['ID'])."
&return=".urlencode("http://example.net/Test0/buynow.php")."
&rm=2&notify_url=".urlencode("http://example.net/Test0/gateway/paypalipn.php")."
&cancel_return=".urlencode("http://example.net/Test0/buynow.php")."
&no_note=1&currency_code=USD";

您是否检查了IPN notify_URL是否正常工作? 您是否尝试过在IPN模拟器中或可能在此链接中的notify_URL看到IPN侦听器返回200 http状态?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM