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
When an Azure resource provider, other than Microsoft Entra ID, validate an access token's signature, signature validation errors occur. These errors might result from the signing key being unavailable or failing to validate the signature. This article helps you troubleshoot such errors and provides solutions in some scenarios.
11
+
When a resource provider validates an access token's signature, signature validation errors occur. These errors might result from the signing key being unavailable or failing to validate the signature. This article helps you troubleshoot such errors and provides solutions in some scenarios.
12
12
13
13
## Step 1: Decode the access token
14
14
@@ -94,6 +94,10 @@ Check the `iss` claim of the access token. The `iss` claim indicates who issued
94
94
- `https://sts.windows.net/{tenant-id}` (used for v1.0 tokens)
95
95
- `https://login.microsoftonline.com/{tenant-id}/v2.0` (used for v2.0 tokens)
96
96
97
+
- For Microsoft Entra External ID-issued tokens, the `iss` claim has this format:
@@ -104,6 +108,10 @@ To avoid signature validation errors, configure your OpenID Connect Metadata cor
104
108
105
109
For more information, see [OpenID Connect on the Microsoft identity platform](/entra/identity-platform/v2-protocols-oidc).
106
110
111
+
- For Microsoft Entra External ID-issued tokens, make sure the OpenId Connect Metadata configuration looks like `https://{tenant-domain}.ciamlogin.com/{tenant-id}/v2.0/.well-known/openid-configuration`.
112
+
113
+
For more information, see [Set up your OpenID Connect identity provider](/entra/external-id/customers/how-to-custom-oidc-federation-customers#set-up-your-openid-connect-identity-provider).
114
+
107
115
- For Azure AD B2C-issued tokens, make sure the OpenId Connect Metadata configuration looks like `<https://{your-domain}.b2clogin.com/{tenant-id}/{b2c-policy}/v2.0/.well-known/openid-configuration`.
108
116
109
117
For more information, see [Web sign in with OpenID Connect in Azure Active Directory B2C](/azure/active-directory-b2c/openid-connect).
0 commit comments