Python Google 结账通知 API
我正在尝试在 Google App Engine 上使用 Google Checkout。目前,我正在用 Python 编写所有内容,并让结账流程正常运行。我在获取已处理订单的通知时遇到一些困难。我一直在寻找 Python 示例,但到目前为止还没有成功。直接根据 Google 提供的文档进行编程,我也无法让我的通知正常工作。有人会碰巧有 Python 中的框架/演示 Google Checkout 通知示例吗?
I am attempting to work with Google Checkout on Google App Engine. Currently, I am writing everything in Python and have the checkout process working. I am having some difficulty getting the notifications of processed orders functioning. I've been searching for Python examples, but thus far have been unsuccessful. Programming directly off of the documentation provided by Google, I have not been able to get my notifications working either. Would anyone happen to have a framework/demo Google Checkout Notification example in Python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
chippyshop 源有一个 Python Google Checkout 实现的一个很好的示例,应该可以帮助您朝着正确的方向前进。
更新:实际上我最终需要自己执行此操作,因此我扩展了上面链接的示例,并将其转换为可重用的
RequestHandler
以在 GAE 上使用。您可以在github 上找到源代码和示例,这应该可以作为以下任何其他人的良好起点这条路。
The chippyshop source has a nice example of a python Google Checkout implementation that should get you moving in the right direction.
UPDATE: I actually ended up needing to do this myself so I extended the example linked above and turned it into a reusable
RequestHandler
for use on GAE.You can find the source and examples on github which should serve as a good starting point for any others following this path.