如何使用 Django 实现简单的 Google Checkout 回调函数?
我的 Django 网站上有一个简单的“立即购买”Google Checkout 按钮(非常简单;没有购物篮或任何更奇特的东西)。我希望 Google 在处理新订单后向我服务器上的 URL 发送通知。通知应告诉我客户的电子邮件地址和姓名(最好是简单的 POST 参数)。然后我可以获取此信息并设置用户帐户,发送确认电子邮件等。
这听起来很简单。然而,我通过 Google 网站上的文档所能找到的只是一堆密集且难以理解的竞争版本、协议和 API,没有明确的教程或示例代码。这是一场噩梦。
此外,我看不出任何明显的方法来测试功能。我不断看到对“沙箱”的引用,但我找不到关于它是什么或如何设置它的具体信息。 URL“sandbox.google.com”返回 503 错误。
有人可以给我指点吗?
提前致谢。
汤姆
I have a simple 'Buy Now' Google Checkout button on my Django site (very simple; no basket or anything more fancy). What I want is for Google to send a notification to a URL on my server once a new order has been processed. The notification should tell me the customer's email address and name (preferably as simple POST params). Then I can take this info and set up a user account, send out a confirmation email, etc.
This sounds simple. However, all I can find by way of documentation on Google's site is a dense and impenetrable thicket of competing versions, protocols, and APIs with no clear tutorials or example code. It is a nightmare.
Furthermore, I can see no obvious way of testing out the functionality. I continually see references to a 'sandbox', but I can find no concrete information on what this is or how to set it up. The URL 'sandbox.google.com' returns a 503 error.
Can anybody give me a pointer?
Thanks in advance.
Tom
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 Satchmo 如何处理以下位置的通知: payment.modules.google
Take a look at how Satchmo handles notifications in: payment.modules.google