2023-03-02 19:36:47 +08:00
|
|
|
## 如何自定义额外的 API 接口?
|
2021-07-27 20:26:41 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
如果有某些接口本库尚未支持,你可按照下面的示例自行扩展:
|
|
|
|
|
|
|
|
```csharp
|
|
|
|
/* 继承 WechatTenpayRequest 实现自定义请求类 */
|
|
|
|
public class MyFakeRequest : WechatTenpayRequest
|
|
|
|
{
|
|
|
|
[Newtonsoft.Json.JsonProperty("my_fake_props")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("my_fake_props")]
|
|
|
|
public string MyFakeProps { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 继承 WechatTenpayResponse 实现自定义响应类 */
|
|
|
|
public class MyFakeResponse : WechatTenpayResponse
|
|
|
|
{
|
|
|
|
[Newtonsoft.Json.JsonProperty("my_fake_props")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("my_fake_props")]
|
|
|
|
public string MyFakeProps { get; set; }
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 扩展 WechatTenpayClient 方法 */
|
|
|
|
public static class MyFakeClientExtensions
|
|
|
|
{
|
|
|
|
public static async Task<MyFakeResponse> ExecuteMyFakeAsync(this WechatTenpayClient client, MyFakeRequest request, CancellationToken cancellationToken = default)
|
|
|
|
{
|
|
|
|
if (client is null) throw new ArgumentNullException(nameof(client));
|
|
|
|
if (request is null) throw new ArgumentNullException(nameof(request));
|
|
|
|
|
|
|
|
IFlurlRequest flurlReq = client
|
2024-02-07 11:22:05 +08:00
|
|
|
.CreateFlurlRequest(request, HttpMethod.Post, "my-fake-url")
|
2021-07-27 20:26:41 +08:00
|
|
|
.SetQueryParam("access_token", request.AccessToken);
|
|
|
|
|
2024-02-07 11:22:05 +08:00
|
|
|
return await client.SendFlurlRequestAsJsonAsync<MyFakeResponse>(flurlReq, request, cancellationToken);
|
2021-07-27 20:26:41 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
2021-11-25 21:15:54 +08:00
|
|
|
同样地,你也可自行扩展回调通知事件的敏感数据模型:
|
2021-07-27 20:26:41 +08:00
|
|
|
|
|
|
|
```csharp
|
|
|
|
/* 实现自定义的 JSON 格式的回调通知事件敏感数据 */
|
|
|
|
public class MyFakeEvent : WechatTenpayEvent.Types.IDecryptedResource
|
|
|
|
{
|
|
|
|
[Newtonsoft.Json.JsonProperty("my_fake_props")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("my_fake_props")]
|
|
|
|
public string MyFakeProps { get; set; }
|
|
|
|
}
|
|
|
|
```
|
2021-11-26 02:59:02 +08:00
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### 敏感信息字段
|
|
|
|
|
2021-12-03 16:55:29 +08:00
|
|
|
如果你扩展的自定义请求或响应模型中包含敏感信息字段,并希望可以通过本库提供的 `EncryptRequestSensitiveProperty()` 和 `DecryptResponseSensitiveProperty()` 两个扩展方法来实现自动加、解密,那么你需要在定义模型时额外指定特性:
|
2021-11-26 02:59:02 +08:00
|
|
|
|
|
|
|
```csharp
|
2021-12-03 16:55:29 +08:00
|
|
|
[WechatTenpaySensitive]
|
2021-11-26 02:59:02 +08:00
|
|
|
public class MyFakeRequest : WechatTenpayRequest
|
|
|
|
{
|
|
|
|
[Newtonsoft.Json.JsonProperty("my_fake_props")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("my_fake_props")]
|
2022-11-13 23:17:18 +08:00
|
|
|
[WechatTenpaySensitiveProperty("my_scheme", "my_alg")]
|
2021-11-26 02:59:02 +08:00
|
|
|
public string MyFakeProps { get; set; }
|
|
|
|
}
|
|
|
|
|
2021-12-03 16:55:29 +08:00
|
|
|
[WechatTenpaySensitive]
|
2021-11-26 02:59:02 +08:00
|
|
|
public class MyFakeResponse : WechatTenpayResponse
|
|
|
|
{
|
|
|
|
[Newtonsoft.Json.JsonProperty("my_fake_props")]
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("my_fake_props")]
|
2022-11-13 23:17:18 +08:00
|
|
|
[WechatTenpaySensitiveProperty("my_scheme", "my_alg")]
|
2021-11-26 02:59:02 +08:00
|
|
|
public string MyFakeProps { get; set; }
|
|
|
|
}
|
|
|
|
```
|