/* * 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; /// /// Contains constants specific to the . /// public static class WeiboAuthenticationConstants { public static class Claims { public const string AvatarHd = "urn:weibo:avatar_hd"; public const string AvatarLarge = "urn:weibo:avatar_large"; public const string CoverImagePhone = "urn:weibo:cover_image_phone"; public const string Location = "urn:weibo:location"; public const string ProfileImageUrl = "urn:weibo:profile_image_url"; public const string ScreenName = "urn:weibo:screen_name"; } }