Guide to configuring OIDC SSO for your organization.
userPrincipalName
, email
)Field | Description |
---|---|
OIDC Client ID | Enter the client ID provided by your OIDC provider. |
OIDC Client Secret | Enter the client secret associated with your client ID. |
OIDC Authorization Endpoint | URL for user authentication (e.g., https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/authorize ). |
OIDC Token Endpoint | URL for exchanging authorization codes for tokens (e.g., https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/token ). |
OIDC User Info Endpoint | URL for retrieving user profile details (e.g., https://graph.microsoft.com/v1.0/me ). |
Field | Description |
---|---|
OIDC User Identifier Key | The field from the user info response that uniquely identifies a user (e.g., userPrincipalName , email ). |
OIDC User First Name Key | The field representing the user’s first name (e.g., givenName ). |
OIDC User Last Name Key | The field representing the user’s last name (e.g., surname ). |
Note: If your OIDC provider uses the same key for both first and last names (e.g., displayName
), use that key in both fields.
Field | Value |
---|---|
OIDC Client ID | <your-client-id> |
OIDC Client Secret | <your-client-secret> |
OIDC Authorization Endpoint | https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/authorize |
OIDC Token Endpoint | https://login.microsoftonline.com/<tenant-id>/oauth2/v2.0/token |
OIDC User Info Endpoint | https://graph.microsoft.com/v1.0/me |
OIDC User Identifier Key | userPrincipalName |
OIDC User First Name Key | givenName |
OIDC User Last Name Key | surname |
<tenant-id>
with your Azure AD tenant ID.