ventilaar
/
clim
Archived
1
Fork 0

shush, i did not upload an api key to git. forget about it

This commit is contained in:
Ventilaar 2022-03-20 14:33:40 +01:00
parent 445c3a4bb4
commit ba690b36f9
2 changed files with 3 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
eindopdracht/openid_secrets.py

View File

@ -2,12 +2,13 @@ class GoogleOID:
def __init__(self):
import requests
import jwt
from openid_secrets import client_secret
self.jwt = jwt
self.requests = requests
self.settings = {'client_id': '954325872153-1v466clrtgg6h4ptt2ne5pgpb9mhilr5.apps.googleusercontent.com',
'client_secret': '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',
'client_secret': client_secret,
'callback_uri': 'http://127.0.0.1.nip.io:5000/login/gcp/callback',
'key_server': 'https://www.googleapis.com/oauth2/v3/certs'}