/* * Licensed under the Apache License, Version 2.0 (http://www.apache.org/licenses/LICENSE-2.0) * See https://github.com/aspnet-contrib/AspNet.Security.OAuth.Providers * for more information concerning the license and the contributors participating to this project. */ namespace ZeroFramework.IdentityServer.API.Infrastructure.Authentication.Weixin; /// /// Default values for Weixin authentication. /// public static class WeixinAuthenticationDefaults { /// /// Default value for . /// public const string AuthenticationScheme = "Weixin"; /// /// Default value for . /// public static readonly string DisplayName = "Weixin"; /// /// Default value for . /// public static readonly string CallbackPath = "/signin-weixin"; /// /// Default value for . /// public static readonly string Issuer = "Weixin"; /// /// Default value for . /// public static readonly string AuthorizationEndpoint = "https://open.weixin.qq.com/connect/qrconnect"; /// /// Default value for . /// public static readonly string TokenEndpoint = "https://api.weixin.qq.com/sns/oauth2/access_token"; /// /// Default value for . /// public static readonly string UserInformationEndpoint = "https://api.weixin.qq.com/sns/userinfo"; }