在 google checkout 中获取价值回报
我正在使用 google checkout,目前在沙盒环境中工作。我使用过 Paypal,我认为 google checkout 的工作原理应该是一样的。但我想知道 google checkout 不会在返回 URL 上发回 HTML 表单字段,而且我还无法找到此问题的任何正确解决方案。这是我的代码。
我在这里使用自定义字段 shopping-cart.merchant-private-data 来获取数据,但我不知道如何在继续 URL 上收集该数据。
我只需要在自定义字段中传递一些 ID,以便在返回 URL 时我可以取回它,然后根据该 ID 更改我的数据库。有一件重要的事情是,返回后,谷歌结帐也会破坏会话,并且会话中没有存储任何值。这给我带来了一个大问题。所以请告诉我如何从 google checkout 取回该自定义 ID。
I am working with google checkout and currently working at sandbox environment. I have used Paypal and i thought google checkout should work like the same. but i wonder that google checkout is not posting back the HTML form field on return URL and im not able to find any proper solution for this problem yet. Here is my code.
here im using a custom field shopping-cart.merchant-private-data to get the data but i dont know how to collect that data on continue URL.
I just need to pass some ID in a custom field so that on return URL I can get it back and then change my database on the basis of this ID. There is one thing which is important that Upon return google checkout is destroying sessions also and there is no value stored in sessions. This made a big problem for me. So please tell me how i can get that custom ID back from google checkout.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用通知 API 从 Google Checkout 获取交易信息。
http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API。 当您收到通知
时,您可以从商家私有数据字段中读取您的自定义 ID。
另请参阅此答案,其中涉及关于一个相关问题。
Use the Notification API to get transaction information back from Google Checkout.
http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html
When you get back the notification, you can read your custom ID from the merchant-private-data field.
Also see this answer which touches on a related issue.