所以我在 Wordpress 网站上有这个表单,我已将其配置为使用 PayPal 沙箱:
<form action="https://sandbox.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="business" value="daniel-facilitator@domain.com">
<input type="hidden" name="item_name" value="Test - 11/11/2017">
<input type="hidden" name="item_number" value="13877">
<input type="hidden" name="notify_url" value="http://b1248fa5.ngrok.io/wp-admin/admin-ajax.php?action=eab_paypal_ipn&blog_id=1&booking_id=1">
<input type="hidden" name="amount" value="5">
<input type="hidden" name="return" value="http://b1248fa5.ngrok.io/events/2017/11/test/">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="no_shipping" value="1">
<input type="hidden" name="cmd" value="_xclick">
<input type="hidden" name="quantity" value="1" max="1">
<p>Haz click aquí para pagar tu entrada</p><input type="image" name="submit" border="0" src="https://www.paypal.com/en_US/i/btn/btn_paynow_SM.gif" alt="PayPal - The safer, easier way to pay online">
<img alt="" border="0" width="1" height="1" src="https://www.paypal.com/en_US/i/scr/pixel.gif">
</form>
它由Event +
插件生成。到目前为止,我一直都很好。
这就是发生的事情:
notify_url
处理程序,但事实并非如此!如果我使用具有相同notify_url
的 PayPal IPN模拟器,那么这是另一个故事。我收到一条消息说:
未发送IPN,并且未验证握手。请查看您的信息。
但是,在这种情况下,我的notify_url
会被调用。
这可能会发生什么?为什么 PayPal 在我提交表单时没有调用notify_url
?
答案 0 :(得分:0)
在交易完成之前,不会触发IPN。听起来你还没有完全完成交易才能看到它击中.. ??
如果您正在完成交易并且您没有得到您期望的内容,那么您需要检查PayPal帐户中的IPN历史记录,看看它是否显示正在发送IPN以及响应的内容在他们身上。根据你所看到的,你会朝着一个方向走。
如果它看起来好好发送,那么您需要检查网络服务器日志,看看当您的IPN网址被点击时发生了什么。必定会发生错误。
有关详细信息,请查看我在how to test PayPal IPN上的文章。