mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2025-04-05 17:37:54 +08:00
feat(wxapi): 新增查询公众号或小程序是否绑定开放平台帐号的接口
This commit is contained in:
parent
20ad185799
commit
6bc78d63f4
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -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!;
|
||||
}
|
||||
}
|
||||
|
@ -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>
|
||||
{
|
||||
}
|
||||
}
|
@ -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; }
|
||||
}
|
||||
}
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
@ -0,0 +1,5 @@
|
||||
{
|
||||
"have_open": true,
|
||||
"errcode": 0,
|
||||
"errmsg": "ok"
|
||||
}
|
Loading…
Reference in New Issue
Block a user