Google Checkout API - 将订单与通知连接起来?
使用 Google Checkout XML API,是否可以将您发送到 Google Checkout 的订单与 Google Checkout 通知您的订单相关联?
现在,我可以向 Google Checkout 发送订单,并且可以从 Google 收到订单已处理完毕的通知。但我不知道如何将两者联系起来。我需要它来将订单连接到用户帐户。
Using the Google Checkout XML API, is it possible to connect an order you send to Google Checkout to an order Google Checkout notifies you about?
Right now, I can send an order to Google Checkout, and I can get notifications from Google that an order went through. But I don't see how to connect the two. I need this to connect orders to user accounts.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将明确的订单号和您的数据一起发送给 Google。这是我编写的一些测试代码,它就是这样做的
Send over an explicit order number with your data to Google. This is some test code I wrote that does just this
通常,您可以使用商家私有数据字段来传递有关订单的任何自定义数据。
当您收到通知时,请从商家私人数据字段中读取自定义信息。
请参阅此答案以获取解决方案到类似的问题。
Generally, you can use the merchant-private-data field to pass any custom data about your order.
When you get back the notification, read the custom info from the merchant-private-data field.
See this answer for a solution to a similar issue.