OAuth with Azure AD v2.0: What is the ext_expires_in parameter returned by Azure AD v2.0 in response to access token requests? -
according azure ad documentation, section “request access token” describes parameter keys should returned azure ad in response access token requests via azure v2.0 endpoint https://login.microsoftonline.com/{my_tenant}/oauth2/v2.0/token
. example of response body returned azure ad v2.0:
"token_type": "bearer", "scope": "user.read", "expires_in": 3599, "ext_expires_in": 0, "access_token": "eyj0exaio ...", "refresh_token": "oaqabaaaaaaa9ktklh ..." "id_token": "eyj0exaioijkv1qilc ..."
the documentation not mention ext_expires_in
1 of returned parameters. questions are:
- what definition of key?
- what kind of other expiration
ext_expires_in
describe in addition currentexpires_in
key does?
Comments
Post a Comment