You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: make `access_token` optional for Azure OIDC SSO connector
6
+
7
+
Previously, the Azure OIDC connector strictly required an access token in the token response, which caused issues with Azure B2C applications that only return ID tokens.
8
+
9
+
This change makes the connector more flexible by:
10
+
11
+
- Making access token optional in token response
12
+
- Conditionally fetching user claims from userinfo endpoint only when:
13
+
- Access token is present in the response
14
+
- Userinfo endpoint is supported by the provider
15
+
- Falling back to ID token claims when access token is not available
0 commit comments