From b2fab23a9797900578bf0371b8f26a106e975218 Mon Sep 17 00:00:00 2001 From: Michael Shin Date: Thu, 26 Feb 2026 22:23:33 -0500 Subject: [PATCH] fix: updated service account API token params --- centml/sdk/auth.py | 1 - 1 file changed, 1 deletion(-) diff --git a/centml/sdk/auth.py b/centml/sdk/auth.py index 01e85cb..cbdc240 100644 --- a/centml/sdk/auth.py +++ b/centml/sdk/auth.py @@ -100,7 +100,6 @@ def authenticate_with_client_credentials(): 'grant_type': 'client_credentials', 'client_id': settings.CENTML_SERVICE_ACCOUNT_ID, 'client_secret': settings.CENTML_SERVICE_ACCOUNT_SECRET, - 'scope': 'openid profile email', } response = requests.post(settings.CENTML_SERVICE_ACCOUNT_TOKEN_URL, data=params, timeout=10) response.raise_for_status()