/* * 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.Weibo; /// /// Default values for Weibo authentication. /// public static class WeiboAuthenticationDefaults { /// /// Default value for . /// public const string AuthenticationScheme = "Weibo"; /// /// Default value for . /// public static readonly string DisplayName = "Weibo"; /// /// Default value for . /// public static readonly string CallbackPath = "/signin-weibo"; /// /// Default value for . /// public static readonly string Issuer = "Weibo"; /// /// Default value for . /// public static readonly string AuthorizationEndpoint = "https://api.weibo.com/oauth2/authorize"; /// /// Default value for . /// public static readonly string TokenEndpoint = "https://api.weibo.com/oauth2/access_token"; /// /// Default value for . /// public static readonly string UserInformationEndpoint = "https://api.weibo.com/2/users/show.json"; /// /// Default value for . /// public static readonly string UserEmailsEndpoint = "https://api.weibo.com/2/account/profile/email.json"; }