mirror of
https://github.com/yawaflua/Flask-Discord.git
synced 2025-12-10 12:29:30 +02:00
8 lines
215 B
Python
8 lines
215 B
Python
API_BASE_URL = "https://discordapp.com/api"
|
|
|
|
AUTHORIZATION_BASE_URL = API_BASE_URL + "/oauth2/authorize"
|
|
TOKEN_URL = API_BASE_URL + "/oauth2/token"
|
|
|
|
|
|
DEFAULT_SCOPES = "identify email connections guilds guilds.join"
|