How to implement a payment gateway in ASP.NET

I need to know how to implement a payment gateway in ASP.NET for my billing project.

Is there one gateway to access the entire bank account?

+4
source share
3 answers

I would look at some open source solutions that do the same thing. Nopcommerce comes to mind and implements an API for a large number of payment providers. Download the code and get the dig ....

+6
source

Most payment gateway providers offer RESTful APIs for managing payments and subscriptions. These are the same APIs that are used by open source e-commerce solutions such as WooCommerce and NopCommerce. You can just make your own implementation of the API.

Payment Gateway API Example

0
source

Source: https://habr.com/ru/post/1309035/


All Articles