Paypal Payflow Link ASP.Net MVC 开源框架
我正在考虑使用 ASP.Net MVC 创建一个网站,该网站大致上有付费会员选项,并且需要允许通过 Paypal 定期付款。我正在考虑使用 Paypals Payflow Link,因为该网站相当小。我正在寻找可以与 Payflow Link 一起使用的开源示例或框架。有没有好的.Net 框架只处理支付系统。该应用程序的其余部分将是自定义应用程序。
I am looking at creating a site using ASP.Net MVC which of coarse has a paid membership option and needs to allow recuring payments via Paypal. I am thinking of using Paypals Payflow Link as the site will be fairly small. I am looking for an Open Source example or Framework that I can use with Payflow Link. Are there any good .Net Frameworks that only handle the payment system. The rest of the app will be custom app.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您谈论的是 Payflow Link,那么您就没有做支付系统。它由 Paypal 托管,用户被发送到 Paypal,然后在付款完成后返回。
如果您指的是 PayFlow Pro,则以下链接将转至 Paypal Payflowpro 技术文档。 https://cms.paypal .com/us/cgi-bin/?&cmd=_render-content&content_ID=developer/howto_gateway_payflowpro
PayflowPro 支付系统非常简单,基本上构建一个 SOAP 请求并处理响应。文档非常简单。
至于集成到MVC中,如果你是做前端定制,那么后端大多只是API集成。
If you are talking about Payflow Link then you do not do the payment system. It is hosted by Paypal, the user gets sent to Paypal and then back when payment is complete.
If you are referring to PayFlow Pro then the following link goes to the Paypal Payflowpro technical document ion. https://cms.paypal.com/us/cgi-bin/?&cmd=_render-content&content_ID=developer/howto_gateway_payflowpro
PayflowPro payment system is very easy, basically construct a SOAP request and handle a response. The documentation is very easy.
As for integrating into MVC, if you are doing the front end custom, then the back end is mostly just API integration.