/* * 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 Yi.Framework.AspNetCore.Authentication.OAuth.Gitee; /// /// Default values used by the Gitee authentication middleware. /// public static class GiteeAuthenticationDefaults { /// /// Default value for . /// public const string AuthenticationScheme = "Gitee"; /// /// Default value for . /// public static readonly string DisplayName = "Gitee"; /// /// Default value for . /// public static readonly string Issuer = "Gitee"; /// /// Default value for . /// public static readonly string CallbackPath = "/signin-gitee"; /// /// Default value for . /// public static readonly string AuthorizationEndpoint = "https://gitee.com/oauth/authorize"; /// /// Default value for . /// public static readonly string TokenEndpoint = "https://gitee.com/oauth/token"; /// /// Default value for . /// public static readonly string UserInformationEndpoint = "https://gitee.com/api/v5/user"; /// /// Default value for . /// public static readonly string UserEmailsEndpoint = "https://gitee.com/api/v5/emails"; }