| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "Logging": {
- "LogLevel": {
- "Default": "Debug",
- "System": "Information",
- "Microsoft": "Information"
- }
- },
- "WeChatPay": {
- //应用号(公众平台AppId/开放平台AppId/小程序AppId/企业微信CorpId)
- "AppId": "",
- //商户号
- "MchId": "",
- //API秘钥,不是APIv3密钥
- "Key": "",
- //API证书 .p12
- "Certificate": "",
- //RSA公钥 (目前仅"企业付款到银行卡API"使用,调用"获取RSA加密公钥API"即可获取)
- "RsaPublicKey": ""
- },
- "Alipay": {
- //应用ID
- "AppId": "",
- //RSA 支付宝公钥,加签方式为公钥证书时,为空
- "AlipayPublicKey": "",
- //RSA 应用私钥,加签方式为公钥证书时,为证书私钥
- "AppPrivateKey": "",
- //网关地址,默认正式环境
- "ServerUrl": "https://openapi.alipay.com/gateway.do",
- //签名类型
- "SignType": "RSA2",
- //商户证书,加签方式为公钥证书时,必填
- "AppCert": "",
- //公钥证书,加签方式为公钥证书时,必填
- "AlipayPublicCert": "",
- //根证书,加签方式为公钥证书时,必填
- "RootCert": ""
- }
- }
|