我这样做了吗? - 贝宝IPN工作

时间:2015-11-05 22:50:02

标签: php paypal

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

P.S;我确实收到了付款,但我的notify_url没有被点击,PayPal 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";

1 个答案:

答案 0 :(得分:1)

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