appsettings.Development.json 999 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "Logging": {
  3. "LogLevel": {
  4. "Default": "Debug",
  5. "System": "Information",
  6. "Microsoft": "Information"
  7. }
  8. },
  9. "WeChatPay": {
  10. //应用号(公众平台AppId/开放平台AppId/小程序AppId/企业微信CorpId)
  11. "AppId": "",
  12. //商户号
  13. "MchId": "",
  14. //API秘钥,不是APIv3密钥
  15. "Key": "",
  16. //API证书 .p12
  17. "Certificate": "",
  18. //RSA公钥 (目前仅"企业付款到银行卡API"使用,调用"获取RSA加密公钥API"即可获取)
  19. "RsaPublicKey": ""
  20. },
  21. "Alipay": {
  22. //应用ID
  23. "AppId": "",
  24. //RSA 支付宝公钥,加签方式为公钥证书时,为空
  25. "AlipayPublicKey": "",
  26. //RSA 应用私钥,加签方式为公钥证书时,为证书私钥
  27. "AppPrivateKey": "",
  28. //网关地址,默认正式环境
  29. "ServerUrl": "https://openapi.alipay.com/gateway.do",
  30. //签名类型
  31. "SignType": "RSA2",
  32. //商户证书,加签方式为公钥证书时,必填
  33. "AppCert": "",
  34. //公钥证书,加签方式为公钥证书时,必填
  35. "AlipayPublicCert": "",
  36. //根证书,加签方式为公钥证书时,必填
  37. "RootCert": ""
  38. }
  39. }