Files
Flask-Discord/flask_discord/configs.py
thecosmos 806cd280fb Basic
2019-05-06 20:26:28 +05:30

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"