使用 appengine 进行谷歌结账
我试图让我的网站有一个简单的结帐流程,人们可以在其中创建帐户并为产品付款。我想将其记录在数据存储中,以便仅在付款完成后才创建帐户,并且完成后该人应该能够返回个人资料/个人页面。我查看了 gchecky 并尝试找到 google appengine 兼容版本,但一无所获。甚至没有任何使用 python 的示例代码或教程。 有什么帮助或替代方案吗?
I am trying to get my website to have a simple checkout flow where the person is able to create an account and pay for the product. I want to record this in the datastore so that the account gets created only when the payment has gone through and the person should be able to get back to the profile/personal page once done. I looked at gchecky and tried to find the google appengine compatible version but haven't been able get anything. Not even any sample code or tutorial using python.
Any help or alternatives?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们的版本基于此项目的 google checkout http://code.google.com/p/chippysshop /
有一个侦听器,当它收到来自 Google 的确认时,它会创建订单,
这对我们来说效果很好。
We based our version on the google checkout from this project http://code.google.com/p/chippysshop/
there is a listener and it creates the order when it receives a confirmation back from Google
works fine for us.