We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 420b84d + 57969fa commit d005481Copy full SHA for d005481
coordinator/authentication.py
@@ -32,6 +32,10 @@ def headers():
32
33
def get_service_token():
34
""" Get a new token from Auth0 """
35
+ logger.info(f"Try to get token from auth0 with "
36
+ f"clientId={settings.AUTH0_CLIENT}, "
37
+ f"audience={settings.AUTH0_AUD}, "
38
+ f"domain ={settings.AUTH0_DOMAIN}")
39
url = f"{settings.AUTH0_DOMAIN}/oauth/token"
40
headers = {"Content-Type": "application/json"}
41
data = {
0 commit comments