我们可以使用data-notify-url
属性来接收IPN吗?
script(src='paypal-button.min.js?merchant=username@email.com', data-button='buynow', data-name='My product', data-amount='1.00', data-env='sandbox', data-notify_url='http://example.com/ipn')
付款成功,但似乎未指定notify_url。
我还使用了Instant Payment Notification (IPN) simulator
并输入了我的notify_url
,但遇到了以下错误:
IPN Delivery Failed:503 Service Unavailable
但是查看我的应用程序的日志,我可以看到notify_url
被调用。
我使用web accept
作为交易类型。
答案 0 :(得分:1)
这看起来像你的后端脚本(可能是PHP或其他任何东西)目前无法使用。 它可能由于服务器过载而发生。
503是HTTP-ErrorCode,因此它与PayPal无关。 PayPal尝试向您发送IPN,您的Web服务器响应503错误。