This commit is contained in:
thecosmos
2019-05-06 20:26:28 +05:30
parent 5840ef00f9
commit 806cd280fb
4 changed files with 108 additions and 0 deletions

7
flask_discord/configs.py Normal file
View File

@@ -0,0 +1,7 @@
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"