Files
juipnet/Infrastructure/WxApi/Request/GetComponentAccessTokenRequest.cs

17 lines
521 B
C#
Raw Normal View History

2024-04-10 13:55:27 +08:00
namespace Etor.Wx.Open
{
/// <summary>
/// 获取第三方App的AccessToken
/// <see cref="GetPreAuthCodeRequest"/>使用
///
/// </summary>
public class GetComponentAccessTokenRequest
{
public string component_appid { get; set; }
public string component_appsecret { get; set; }
/// <summary>
/// <see cref="GetComponentVerifyTicketRequest"/>这个请求可以拿到
/// </summary>
public string component_verify_ticket { get; set; }
}
}