如何在google checkout中与mysql集成?
我正在使用 Google checkout 在线销售我的产品。我希望只有在验证客户付款后,订单信息才会存储在我的服务器上的 mysql
数据库中。当客户点击 Google 结账上的“立即订购”按钮时,订单完整信息也会同步存储在数据库中。我正在解决这个问题,但没有任何出路。
I am working on Google checkout to sell my product online. i want order information to be stored in mysql
database on my server only after payment verification of customer.when customer click on order now button on Google checkout synchronously that order complete information to be stored in database also. i m in fix to solve this but not getting any way of out..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请注意,当客户单击“立即购买”按钮时,订单并未完成。当客户在 Google Checkout 的“下订单”页面完成订单并且 Google 验证信用卡并扣款后,订单即告完成。
要获取订单处理详细信息,请使用 Google Checkout Notification API:
http://code.google .com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html
您将在各个订单处理阶段收到回调,以便您相应地更新数据库和库存。
Please note that the order is not complete when the customer clicks the Buy Now button. The order is complete after the customer finishes the order on Google Checkout's "Place Order" page and Google verifies and charges the credit card.
To get order processing details use the Google Checkout Notification API:
http://code.google.com/apis/checkout/developer/Google_Checkout_XML_API_Notification_API.html
You'll get callbacks at various order processing stages which will allow you to update your database and inventory accordingly.