From d568a5be8547944f1452b875ce1720de364eed36 Mon Sep 17 00:00:00 2001 From: James Woglom Date: Wed, 1 Jul 2026 00:59:14 +0000 Subject: [PATCH] Update US Tandem Source OIDC client_id The Tandem Source web app now authenticates with client_id 0oa4wnbvtladeyVZX4h7 (US); the old 0oa27ho9tpZE9Arjy4h7 no longer appears in the current build. This value is used both for the OIDC authorize/token requests and the id_token audience check, which stay consistent. EU client_id left unchanged (no EU capture to verify). --- tconnectsync/api/tandemsource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tconnectsync/api/tandemsource.py b/tconnectsync/api/tandemsource.py index b7bbffd..8d714ac 100644 --- a/tconnectsync/api/tandemsource.py +++ b/tconnectsync/api/tandemsource.py @@ -103,7 +103,7 @@ class TandemSourceApi: 'TDC_OAUTH_AUTHORIZE_URL': 'https://tdcservices.tandemdiabetes.com/accounts/api/oauth2/v1/authorize', 'TDC_OIDC_JWKS_URL': 'https://tdcservices.tandemdiabetes.com/accounts/api/.well-known/openid-configuration/jwks', 'TDC_OIDC_ISSUER': 'https://tdcservices.tandemdiabetes.com/accounts/api', - 'TDC_OIDC_CLIENT_ID': '0oa27ho9tpZE9Arjy4h7', + 'TDC_OIDC_CLIENT_ID': '0oa4wnbvtladeyVZX4h7', 'SOURCE_URL': 'https://source.tandemdiabetes.com/', 'REDIRECT_URI': 'https://sso.tandemdiabetes.com/auth/callback', 'TOKEN_ENDPOINT': 'https://tdcservices.tandemdiabetes.com/accounts/api/connect/token',