forked from Sarah/Lieb-Website
12 lines
518 B
C#
12 lines
518 B
C#
namespace Discord.OAuth2
|
|
{
|
|
public static class DiscordDefaults
|
|
{
|
|
public const string AuthenticationScheme = "Discord";
|
|
public const string DisplayName = "Discord";
|
|
|
|
public static readonly string AuthorizationEndpoint = "https://discordapp.com/api/oauth2/authorize";
|
|
public static readonly string TokenEndpoint = "https://discordapp.com/api/oauth2/token";
|
|
public static readonly string UserInformationEndpoint = "https://discordapp.com/api/users/@me";
|
|
}
|
|
}
|