Azure AD JWT token: how to see through which client secret it was granted

前端 未结 1 1503
旧时难觅i
旧时难觅i 2021-01-24 16:34

I have an Azure AD application and have generated two client secrets. I can get a JWT access token using each secret (via client_credentials grant) but can I also s

1条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-24 17:13

    You can't see through which client secret has the token been issued. What is the reason for asking through which secret it was?

    Regarding provided claims - you can check here and here what the different claims mean. For exampe the iat, nbf are just dates - when the token was issued and the validity begin time.

    For some of the claims, like aio there is no documentation. But there is no claim to show you which secret was used.

    0 讨论(0)
提交回复
热议问题