0

我们可以使用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交易类型。

4

1 回答 1

1

这看起来就像您的后端脚本(可能是 PHP 或其他任何东西)当前不可用。它可能是由于服务器过载而发生的。

503 是一个 HTTP-ErrorCode,因此它与 PayPal 无关。PayPal 尝试将 IPN 发送给您,而您的网络服务器响应 503 错误。

于 2013-09-20T09:14:29.400 回答