Hi Shaikh, Shahana (ADV D AA MO INFRA UTC) ,
The JWKS Uri for Azure is this one:
https://login.microsoftonline.com/common/discovery/v2.0/keys
You can confirm this by calling the following from your browser:
https://login.microsoftonline.com/{your_azure_active_directory_id}/.well-known/openid-configuration
If your application has custom signing keys as a result of using the claims-mapping feature, however, you need to append an appid
(from your app registration) query parameter that contains the application ID to get a jwks_uri
that points to the signing key information of the application. So it would look like this (but with your own app ID added):
https://login.microsoftonline.com/{tenant}/discovery/keys?appid=6731de76-14a6-49ae-97bc-6eba6914391e
See more details here.
-
If the information helped you, please Accept the answer. This will help us as well as others in the community who might be looking up similar questions.