@@ -29,7 +29,7 @@ The OAuth credential helper is the recommended authentication method for product
2929 client_id = " your-oauth-client-id" ,
3030 client_secret = " your-oauth-client-secret" ,
3131 auth_url = " https://crispthinking.auth0.com/oauth/token" , # Optional
32- audience = " crisp-athena-dev " # Optional
32+ audience = " crisp-athena-live " # Optional
3333 )
3434
3535 # Create authenticated channel
@@ -51,7 +51,7 @@ Set these environment variables for OAuth authentication:
5151
5252 # Optional (defaults shown)
5353 export OAUTH_AUTH_URL=" https://crispthinking.auth0.com/oauth/token"
54- export OAUTH_AUDIENCE=" crisp-athena-dev "
54+ export OAUTH_AUDIENCE=" crisp-athena-live "
5555
5656 **Complete Example: **
5757
@@ -73,7 +73,7 @@ Set these environment variables for OAuth authentication:
7373 client_id = os.getenv(" OAUTH_CLIENT_ID" ),
7474 client_secret = os.getenv(" OAUTH_CLIENT_SECRET" ),
7575 auth_url = os.getenv(" OAUTH_AUTH_URL" , " https://crispthinking.auth0.com/oauth/token" ),
76- audience = os.getenv(" OAUTH_AUDIENCE" , " crisp-athena-dev " ),
76+ audience = os.getenv(" OAUTH_AUDIENCE" , " crisp-athena-live " ),
7777 )
7878
7979 # Test token acquisition
@@ -166,7 +166,7 @@ Default Endpoints
166166The credential helper uses these default OAuth endpoints:
167167
168168* **Auth URL **: ``https://crispthinking.auth0.com/oauth/token ``
169- * **Audience **: ``crisp-athena-dev ``
169+ * **Audience **: ``crisp-athena-live ``
170170
171171These can be overridden when creating the ``CredentialHelper ``.
172172
0 commit comments