使用基于 ActionScript 的购物车处理付款
一位老客户联系我,希望制作一个精品网站,展示一种产品,并让用户进行购买。我想用 Flash 制作该网站,但我还没有弄清楚如何使用 Authorize.net 等服务(也安全地)处理付款。任何建议将不胜感激。
-埃文
I was approached by an old client about making a boutique web site that showcases one product, and lets the user make a purchase. I wanted to make the site in flash, but I havent had any luck figuring out how to process the payments with a service such as Authorize.net (securely, too). Any advice would be much appreciated.
-Evan
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您还必须使用服务器端语言。这是使用 PHP 和 cURL 所需的最低限度: http://upshots.org/?p=63
一旦完成,您就可以像发送其他请求一样发送 HTTP 请求。创建一个 URLVariables 对象,将 REQUEST 变量附加到它,将该对象添加为 URLRequest 对象的 data 属性,该对象将被馈送到要发送的 URLLoader 对象。
you'll have to use a server-side language as well. here's the minimum you need using PHP and cURL: http://upshots.org/?p=63
once that's in place, you send the HTTP request like you would any other. create a URLVariables object, attach your REQUEST variables to it, add that object as the data property of a URLRequest object, which is fed to a URLLoader object to be sent.