Google Checkout API - 将订单与通知连接起来?

发布于 2024-09-12 11:17:33 字数 186 浏览 4 评论 0原文

使用 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 技术交流群。

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

发布评论

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

评论(2

空城之時有危險 2024-09-19 11:17:33

将明确的订单号和您的数据一起发送给 Google。这是我编写的一些测试代码,它就是这样做的

        CheckoutShoppingCartRequest Req = checkoutButton.CreateRequest();
        Req.AddItem(product.Name, product.ShortDescription, OrderID, product.Price, 1);
        GCheckoutResponse Resp = Req.Send();

        if (Resp.IsGood)
        {

        }
        else
        {

        }

Send over an explicit order number with your data to Google. This is some test code I wrote that does just this

        CheckoutShoppingCartRequest Req = checkoutButton.CreateRequest();
        Req.AddItem(product.Name, product.ShortDescription, OrderID, product.Price, 1);
        GCheckoutResponse Resp = Req.Send();

        if (Resp.IsGood)
        {

        }
        else
        {

        }
留蓝 2024-09-19 11:17:33

通常,您可以使用商家私有数据字段来传递有关订单的任何自定义数据。

当您收到通知时,请从商家私人数据字段中读取自定义信息。

请参阅此答案以获取解决方案到类似的问题。

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.

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