如何在我的 Flex 4 Web 应用程序中使用 google checkout 功能?
现在我正在开发一个flex应用程序(应用程序服务器是apache + PHP + mysql)需要集成google checkout功能,但是google checkout没有flex SDK可以使用,我该怎么办?谢谢。
Now I am developing a flex application (app server is apache + PHP + mysql ) what need integrate with google checkout function ,but the google checkout has not flex SDK to use ,what should I do ?Thanks .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
标准谷歌结账的问题是你去谷歌结账。这可能会让客户感到困惑,并且当人们进入 Google Checkout 后未完成订单时,您将损失销售额。
更好的方法是构建/找到一个简单的订单系统后端和一个灵活的购物车前端。订单流程将使用 1 个 php 脚本进行如下工作...
指向 google checout 和 api 文档的链接
Google Checkout:custom_cart
Google Checkout:custom_processing
我做了类似的东西,但使用的是贝宝支付专业 API。为了节省您的时间,您可能需要寻找一个预构建的购物车,您可以仅将其用于后端订单和产品系统。您也许还可以找到一个灵活的购物车来使用。目标是使流程与您的定制无缝衔接,这样他们就无需离开 Flex 应用程序。单击结账,填写表格(账单、运输)...进度条/图标旋转,结果弹出,并表示感谢。
The problem with standard google checkout is you go to google to checkout. That can confuse customers and you will lose sales when people don't complete the order once they get to google checkout.
The better approach is to build/find a simple order system backend and a flex shopping cart front end. The order process will work as follows using 1 php script...
Links to google checout and api docs
Google Checkout: custom_cart
Google Checkout: custom_processing
I made something just like this but using paypal's payments pro api. To save you time you may want to look around for a prebuilt shopping cart that you can use just for it's backend order and product system. And you may be able to find a flex shopping cart to use as well. The goal is to make the process seamless to your custom so they never need to leave the flex app. The click checkout, fill out the form (billing, shipping) ... progress bar/icon spins, results pops up with a thank you.