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.Work
{
public static class WechatWorkClientExecuteCgibinExtensions
{
///
/// 异步调用 [GET] /cgi-bin/gettoken 接口。
/// REF: https://open.work.weixin.qq.com/api/doc/90000/90135/91039
///
///
///
///
///
public static async Task ExecuteCgibinGetTokenAsync(this WechatWorkClient client, Models.CgibinGetTokenRequest 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(HttpMethod.Get, "cgi-bin", "token")
.SetOptions(request)
.SetQueryParam("corpid", client.CorpId)
.SetQueryParam("corpsecret", client.AgentSecret);
return await client.SendRequestAsync(flurlReq, cancellationToken: cancellationToken);
}
///
/// 异步调用 [GET] /cgi-bin/get_api_domain_ip 接口。
/// REF: https://open.work.weixin.qq.com/api/doc/90000/90135/92520
///
///
///
///
///
public static async Task ExecuteCgibinGetApiDomainIpAsync(this WechatWorkClient client, Models.CgibinGetApiDomainIpRequest 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(HttpMethod.Get, "cgi-bin", "get_api_domain_ip")
.SetOptions(request)
.SetQueryParam("access_token", request.AccessToken);
return await client.SendRequestAsync(flurlReq, cancellationToken: cancellationToken);
}
}
}