using System; using System.Collections.Generic; using System.Net.Http; using System.Text; using System.Threading; using System.Threading.Tasks; using Flurl; using Flurl.Http; namespace SKIT.FlurlHttpClient.Wechat.TenpayV3 { /// /// 为 提供电商收付通账单相关的 API 扩展方法。 /// public static class WechatTenpayClientExecuteEcommerceBillExtensions { /// /// 异步调用 [GET] /ecommerce/bill/fundflowbill 接口。 /// REF: https://pay.weixin.qq.com/wiki/doc/apiv3_partner/apis/chapter7_9_5.shtml /// /// /// /// /// public static async Task ExecuteGetEcommerceBillFundflowBillAsync(this WechatTenpayClient client, Models.GetEcommerceBillFundflowBillRequest 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 .CreateRequest(request, HttpMethod.Get, "ecommerce", "bill", "fundflowbill") .SetQueryParam("bill_date", request.BillDateString) .SetQueryParam("account_type", request.AccountType) .SetQueryParam("algorithm", request.Algorithm); if (!string.IsNullOrEmpty(request.TarType)) flurlReq.SetQueryParam("tar_type", request.TarType); return await client.SendRequestWithJsonAsync(flurlReq, cancellationToken: cancellationToken); } } }