Hi @Leonard, Jared ,
Thanks for reaching out and apologies for the delay in response.
https://login.microsoftonline.com/{tenant}/v2.0
is the OpenID issuer URL that identifies the issuer of the OpenID Connect ID token where {tenant}
is the tenant ID or name. This URL is used by the relying party to verify the authenticity of the ID token.
The OpenID issuer URL provides metadata about the OpenID Connect provider. Every app registration in Azure AD is provided with a publicly accessible endpoint that serves its OpenID configuration document. To determine the URI of the configuration document's endpoint for your app, append the well-known OpenID configuration path to issuer URL.
- Well-known configuration document path:
/.well-known/openid-configuration
- OpenID Issuer URL:
https://login.microsoftonline.com/{tenant}/v2.0
In the case of OpenID Connect, the .well-known
directory is used to store the OpenID Connect discovery document that provides metadata about the OpenID Connect provider, including the supported scopes, claims, and endpoints.
Hope this will help.
Thanks,
Shweta
Please remember to "Accept Answer" if answer helped you.