Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
roc916 committed Jan 6, 2025
1 parent 1935b05 commit 82cacad
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,51 @@
- [.NET 8.0](https://dotnet.microsoft.com/download/dotnet/8.0)
- [.NET 9.0](https://dotnet.microsoft.com/download/dotnet/9.0)

### 示例配置选项

```json
"Paylinks": {
"Alipay": {
// 网关地址
"ServerUrl": "https://openapi.alipay.com",
// 应用Id
"AppId": "",
// 应用私钥
"AppPrivateKey": "",
// 应用证书序列号
"AppCertSN": "",
// 支付宝公钥
"AlipayPublicKey": "",
// 支付宝证书序列号
"AlipayCertSN": "",
// 支付宝根证书序列号
"AlipayRootCertSN": "",
// 敏感信息对称加密算法类型,推荐:AES
"EncryptType": "",
// 敏感信息对称加密算法密钥
"EncryptKey": ""
},
"WeChatPay": {
// 网关地址
"ServerUrl": "https://api.mch.weixin.qq.com",
// 应用Id
"AppId": "",
// 商户号
"MchId": "",
// 商户证书序列号
"MchSerialNo": "",
// 商户证书私钥
"MchPrivateKey": "",
// 微信支付公钥
"WeChatPayPublicKey": "",
// 微信支付公钥Id(公钥序列号)
"WeChatPayPublicKeyId": "",
// 商户APIv3密钥
"APIv3Key": ""
}
}
```

### 原 Paylink

- [V4](../../tree/v4)
Expand Down

0 comments on commit 82cacad

Please sign in to comment.