如何将 Google Checkout 的响应与数据库中的正确顺序关联起来?
当我在回调 URL 处收到来自 google 的通知时,我无法将消息与数据库中的正确顺序关联起来。我可以传递一些标识符作为回调通知的一部分发送回给我吗?这一般是如何完成的?
我正在使用最新的 google-checkout-java SDK。
When I get the notifications from google at the callback URL I am unable to correlate the messages to the correct order in the database. Can I pass some identifier that would be sent back to me as a part of the callback notification? How is this done in general?
I am using the latest google-checkout-java SDK.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够为此使用您的商家私人数据部分。
当您收到通知时,您可以读取此数据。
另请参阅此问题,尤其是此答案。我只想补充一点,您不必使用
merchant-note
(或your-ref
),但可以将您自己的任何标签定义为商家专用-data 定义为xs:any.
希望有帮助...
You should be able to use your merchant-private-data-section for this
When you get the notification, you can read this data.
See also this question and especially this answer. I'd only note additionally that you don't have to use
merchant-note
(oryour-ref
), but can define any tags of your own as merchant-private-data is defined as a sequence ofxs:any
.Hope that helps...