This commit is contained in:
Mavis Ou 2017-09-12 14:11:40 -07:00
Родитель 51f9d0e9ba
Коммит 550e86ab47
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -11,7 +11,7 @@ client_secrets = {
'web': {
'client_id': os.getenv('client_id', 'PUT YOUR GOOGLE CLIENT_ID VALUE HERE'),
'client_secret': os.getenv('client_secret', 'PUT YOUR GOOGLE CLIENT_SECRET VALUE HERE'),
'redirect_uris': os.getenv('redirect_uris', 'http://test.example.com:8000/oauth2callback').split(','),
'redirect_uris': os.getenv('redirect_uris', 'http://test.example.com:8000/api/pulse/oauth2callback').split(','),
'auth_uri': os.getenv('auth_uri', 'https://accounts.google.com/o/oauth2/auth'),
'token_uri': os.getenv('token_uri', 'https://accounts.google.com/o/oauth2/token')
}