如何停止来自谷歌结账的重复谷歌通知响应
我集成了谷歌结帐付款。一切都进展顺利,但最后 在响应处理程序中,命令的响应重复出现。我尝试了很多事情,但我无法找到如何停止“重复响应”。 因为这个文件的大小 '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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要使用 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.