具有信用卡支付功能的 ASP.NET 应用程序
我可能会进入一个涉及信用卡交易的网络项目,这是我以前没有做过的。交易将通过 Authorize.NET 或可能通过 PayPal 进行。
在用户登录期间,表单身份验证就足够了吗?
还有哪些其他考虑因素/.NET 技术,特别是我需要研究的安全性?
I might go into a web project that involves credit card transactions, which I have not done previously. The transaction will go through Authorize.NET or may be PayPal.
During user log-in will Forms Authentication be sufficient?
What are other considerations/.NET technologies, particularly with security that I need to research?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非您需要跟踪每个特定用户的订单,否则不需要进行身份验证。例如,一些电子商务系统(例如 nopCommerce)允许访客交易。您需要的是 SSL 证书< /a> 来自信誉良好的证书颁发机构。其余的可以通过查看一些代码示例(如 Authorize.Net)来收集。
Authentication is unnecessary unless you need to keep track of orders per specific user. Some eCommerce systems like nopCommerce allow guest transactions, for example. What you do need is a SSL certificate from a reputable certificate authority. The rest can be gathered by looking at some code samples like Authorize.Net has.