我正在研究 PayPal 沙盒。事务运行正常,返回 URL 被完美调用,但 IPN(通知 URL)页面没有被调用。
我也启用了来自帐户的通知 URL。调用者和侦听器页面都上传到服务器上。上传的侦听器页面的 URL 在我的代码中设置,如下所示。但是没有调用通知 URL。
<script
data-env="sandbox"
data-callback="http://example.com/IpnPage.aspx"
data-tax="2"
data-shipping="5"
data-currency="USD"
data-amount="<%= Session["final_total"]%>"
data-quantity="1"
data-name="Fees"
data-number="123"
data-custom="<%= Session["sb"]%>"
data-return="http://example.com/IpnPage.aspx"
....></script>