diff options
author | 2020-12-13 19:06:46 +0000 | |
---|---|---|
committer | 2020-12-13 19:06:46 +0000 | |
commit | d5eee463a298c7966a5a47d81d7163aafd0b818b (patch) | |
tree | 30e33a8d5beabed53d73a5687449af5b742acf67 /backend/constants.py | |
parent | Merge pull request #23 from python-discord/ks123/form-endpoint (diff) |
HTTPs URL in OAuth2 callback
Diffstat (limited to 'backend/constants.py')
-rw-r--r-- | backend/constants.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/constants.py b/backend/constants.py index 61519ed..fdf7092 100644 --- a/backend/constants.py +++ b/backend/constants.py @@ -13,7 +13,7 @@ OAUTH2_CLIENT_ID = os.getenv("OAUTH2_CLIENT_ID") OAUTH2_CLIENT_SECRET = os.getenv("OAUTH2_CLIENT_SECRET") OAUTH2_REDIRECT_URI = os.getenv( "OAUTH2_REDIRECT_URI", - "http://forms.pythondiscord.com/callback" + "https://forms.pythondiscord.com/callback" ) SECRET_KEY = os.getenv("SECRET_KEY", binascii.hexlify(os.urandom(30)).decode()) |