/* * 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.QQ; /// /// Default values for QQ authentication. /// public static class QQAuthenticationDefaults { /// /// Default value for . /// public const string AuthenticationScheme = "QQ"; /// /// Default value for . /// public static readonly string DisplayName = "QQ"; /// /// Default value for . /// public static readonly string Issuer = "QQ"; /// /// Default value for . /// public static readonly string CallbackPath = "/signin-qq"; /// /// Default value for . /// public static readonly string AuthorizationEndpoint = "https://graph.qq.com/oauth2.0/authorize"; /// /// Default value for . /// public static readonly string TokenEndpoint = "https://graph.qq.com/oauth2.0/token"; /// /// Default value for . /// public static readonly string UserIdentificationEndpoint = "https://graph.qq.com/oauth2.0/me"; /// /// Default value for . /// public static readonly string UserInformationEndpoint = "https://graph.qq.com/user/get_user_info"; }