Skip to content

Latest commit

 

History

History
17 lines (16 loc) · 796 Bytes

README.md

File metadata and controls

17 lines (16 loc) · 796 Bytes

UmsPay

Build Status Supports China Ums qrcode pay

How to setup the component?

  1. Open then samples web project, and add the appsettings.json file based on your payment paramers from your client or ums provider
  2. In then starup class, config as follows:
        public void ConfigureServices(IServiceCollection services)
        {
            services.Configure<UmsPayOptions>(_configuration);
            services.AddUmsPay();
            services.AddUmsPayHttpClient();
            services.AddMvc();
        }
  1. More useage details was in Home Controler, you can set up a breakpoint, and open the debugger.