feat(wxapi): 新增查询公众号或小程序是否绑定开放平台帐号的接口

This commit is contained in:
Fu Diwei 2022-05-01 21:01:57 +08:00
parent 20ad185799
commit 6bc78d63f4
8 changed files with 85 additions and 4 deletions

View File

@ -29,6 +29,26 @@ namespace SKIT.FlurlHttpClient.Wechat.Api
return await client.SendRequestWithJsonAsync<Models.CgibinOpenCreateResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
/// <summary>
/// <para>异步调用 [POST] /cgi-bin/open/have 接口。</para>
/// <para>REF: https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/Mini_Program_Basic_Info/getbindopeninfo.html </para>
/// </summary>
/// <param name="client"></param>
/// <param name="request"></param>
/// <param name="cancellationToken"></param>
/// <returns></returns>
public static async Task<Models.CgibinOpenHaveResponse> ExecuteCgibinOpenHaveAsync(this WechatApiClient client, Models.CgibinOpenHaveRequest 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.Post, "cgi-bin", "open", "have")
.SetQueryParam("access_token", request.AccessToken);
return await client.SendRequestWithJsonAsync<Models.CgibinOpenHaveResponse>(flurlReq, data: request, cancellationToken: cancellationToken);
}
/// <summary>
/// <para>异步调用 [POST] /cgi-bin/open/bind 接口。</para>
/// <para>REF: https://developers.weixin.qq.com/doc/oplatform/Third-party_Platforms/2.0/api/account/bind.html </para>

View File

@ -3,8 +3,15 @@
/// <summary>
/// <para>表示 [POST] /cgi-bin/open/bind 接口的请求。</para>
/// </summary>
public class CgibinOpenBindRequest : CgibinOpenCreateRequest, IInferable<CgibinOpenBindRequest, CgibinOpenBindResponse>
public class CgibinOpenBindRequest : WechatApiRequest, IInferable<CgibinOpenBindRequest, CgibinOpenBindResponse>
{
/// <summary>
/// 获取或设置授权方的 AppId。
/// </summary>
[Newtonsoft.Json.JsonProperty("appid")]
[System.Text.Json.Serialization.JsonPropertyName("appid")]
public string AuthorizerAppId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置开放平台的 AppId。
/// </summary>

View File

@ -3,7 +3,13 @@
/// <summary>
/// <para>表示 [POST] /cgi-bin/open/get 接口的请求。</para>
/// </summary>
public class CgibinOpenGetRequest : CgibinOpenCreateRequest, IInferable<CgibinOpenGetRequest, CgibinOpenGetResponse>
public class CgibinOpenGetRequest : WechatApiRequest, IInferable<CgibinOpenGetRequest, CgibinOpenGetResponse>
{
/// <summary>
/// 获取或设置授权方的 AppId。
/// </summary>
[Newtonsoft.Json.JsonProperty("appid")]
[System.Text.Json.Serialization.JsonPropertyName("appid")]
public string AuthorizerAppId { get; set; } = string.Empty;
}
}

View File

@ -3,7 +3,13 @@
/// <summary>
/// <para>表示 [POST] /cgi-bin/open/get 接口的响应。</para>
/// </summary>
public class CgibinOpenGetResponse : CgibinOpenCreateResponse
public class CgibinOpenGetResponse : WechatApiResponse
{
/// <summary>
/// 获取或设置开放平台的 AppId。
/// </summary>
[Newtonsoft.Json.JsonProperty("open_appid")]
[System.Text.Json.Serialization.JsonPropertyName("open_appid")]
public string OpenAppId { get; set; } = default!;
}
}

View File

@ -0,0 +1,9 @@
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /cgi-bin/open/have 接口的请求。</para>
/// </summary>
public class CgibinOpenHaveRequest : WechatApiRequest, IInferable<CgibinOpenHaveRequest, CgibinOpenHaveResponse>
{
}
}

View File

@ -0,0 +1,15 @@
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
{
/// <summary>
/// <para>表示 [POST] /cgi-bin/open/have 接口的响应。</para>
/// </summary>
public class CgibinOpenHaveResponse : WechatApiResponse
{
/// <summary>
/// 获取或设置是否绑定开放平台帐号。
/// </summary>
[Newtonsoft.Json.JsonProperty("have_open")]
[System.Text.Json.Serialization.JsonPropertyName("have_open")]
public bool IsHaveOpen { get; set; }
}
}

View File

@ -3,7 +3,20 @@
/// <summary>
/// <para>表示 [POST] /cgi-bin/open/unbind 接口的请求。</para>
/// </summary>
public class CgibinOpenUnbindRequest : CgibinOpenBindRequest, IInferable<CgibinOpenUnbindRequest, CgibinOpenUnbindResponse>
public class CgibinOpenUnbindRequest : WechatApiRequest, IInferable<CgibinOpenUnbindRequest, CgibinOpenUnbindResponse>
{
/// <summary>
/// 获取或设置授权方的 AppId。
/// </summary>
[Newtonsoft.Json.JsonProperty("appid")]
[System.Text.Json.Serialization.JsonPropertyName("appid")]
public string AuthorizerAppId { get; set; } = string.Empty;
/// <summary>
/// 获取或设置开放平台的 AppId。
/// </summary>
[Newtonsoft.Json.JsonProperty("open_appid")]
[System.Text.Json.Serialization.JsonPropertyName("open_appid")]
public string OpenAppId { get; set; } = string.Empty;
}
}

View File

@ -0,0 +1,5 @@
{
"have_open": true,
"errcode": 0,
"errmsg": "ok"
}