Alipay.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "$schema": "https://gitee.com/dotnetchina/Furion/raw/v4/schemas/v4/furion-schema.json",
  3. // 支付宝支付配置,文档地址:https://openhome.alipay.com/develop/sandbox/app
  4. "Alipay": {
  5. "ServerUrl": "https://openapi-sandbox.dl.alipaydev.com/gateway.do", // 支付宝网关地址
  6. "WebsocketUrl": "openchannel-sandbox.dl.alipaydev.com", // websocket服务地址
  7. //"AuthUrl": "https://openauth.alipay.com/oauth2/publicAppAuthorize.htm", // 正式环境授权回调地址
  8. "AuthUrl": "https://openauth-sandbox.dl.alipaydev.com/oauth2/publicAppAuthorize.htm", // 沙箱环境授权回调地址
  9. "AppAuthUrl": "http://xxxxxxxxxx", // 应用授权回调地址
  10. "NotifyUrl": "http://xxxxxxxxx/api/sysAlipay/Notify", // 应用网关地址
  11. "RootCertPath": "AlipayCrt/alipayRootCert.crt", // 支付宝根证书存放路径
  12. "AccountList": [
  13. {
  14. "Name": "sandbox 默认应用",
  15. "AppId": "xxxxxxxxxxxxxx",
  16. "SignType": "RSA2",
  17. "PrivateKey": "xxxxxxxxxxxxxxxxx",
  18. "EncryptKey": "xxxxxxxxxxxxxxxxxxxx",
  19. "AppCertPath": "AlipayCrt/appPublicCert.crt", // 应用公钥证书存放路径
  20. "AlipayPublicCertPath": "AlipayCrt/alipayPublicCert.crt" // 支付宝公钥证书存放路径
  21. },
  22. {
  23. "Name": "sandbox 默认应用2",
  24. "AppId": "xxxxxxxxxxxxxx",
  25. "SignType": "RSA2",
  26. "PrivateKey": "xxxxxxxxxxxxxxxxx",
  27. "EncryptKey": "xxxxxxxxxxxxxxxxxxxx",
  28. "AppCertPath": "AlipayCrt/appPublicCert.crt", // 应用公钥证书存放路径
  29. "AlipayPublicCertPath": "AlipayCrt/alipayPublicCert.crt" // 支付宝公钥证书存放路径
  30. }
  31. ]
  32. }
  33. }