如何将 Google Checkout 的响应与数据库中的正确顺序关联起来?

发布于 2024-10-08 17:58:04 字数 136 浏览 4 评论 0原文

当我在回调 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 技术交流群。

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

发布评论

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

评论(1

坏尐絯 2024-10-15 17:58:04

您应该能够为此使用您的商家私人数据部分。

<checkout-shopping-cart xmlns="http://checkout.google.com/schema/2">
  <shopping-cart>
    <merchant-private-data>
      <your-ref>019b1723a2754981ed5bc24e6ac9f501</your-ref>
    </merchant-private-data>
    [...]
  </shopping-cart>
</checkout-shopping-cart>

当您收到通知时,您可以读取此数据。

另请参阅此问题,尤其是此答案。我只想补充一点,您不必使用 merchant-note (或 your-ref),但可以将您自己的任何标签定义为商家专用-data 定义xs:any.
希望有帮助...

You should be able to use your merchant-private-data-section for this

<checkout-shopping-cart xmlns="http://checkout.google.com/schema/2">
  <shopping-cart>
    <merchant-private-data>
      <your-ref>019b1723a2754981ed5bc24e6ac9f501</your-ref>
    </merchant-private-data>
    [...]
  </shopping-cart>
</checkout-shopping-cart>

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 (or your-ref), but can define any tags of your own as merchant-private-data is defined as a sequence of xs:any.
Hope that helps...

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