如何停止来自谷歌结账的重复谷歌通知响应

发布于 2024-12-27 22:16:41 字数 298 浏览 1 评论 0原文

我集成了谷歌结帐付款。一切都进展顺利,但最后 在响应处理程序中,命令的响应重复出现。我尝试了很多事情,但我无法找到如何停止“重复响应”。 因为这个文件的大小 'googlemessage.log' 每次都会增加。

                             $Gresponse->SendAck(null, false); 

但这可以帮助我。

I am integrate google checkout for payment.every thing going in perfect way,but at last
in response handler,response of order coming repetitively. i had try to many things but i unable to find that how to stop "repetitively response. "
because of this size of file
'googlemessage.log' increases every time.

                             $Gresponse->SendAck(null, false); 

but this can's help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

唠甜嗑 2025-01-03 22:16:41

您需要使用 HTTP 200 响应代码和通知序列号来确认每个通知:

http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html#responding_to_notifications

Google Checkout 会在最多 14 天内尝试重新发送通知,或者直到您确认为止。

You need to acknowledge each notification with a HTTP 200 response code and the serial number of the notification:

http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html#responding_to_notifications

Google Checkout will try to resend the notification for up to 14 days or until you acknowledge it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文