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 current expires_in key does?


Comments

Popular posts from this blog

python Tkinter Capturing keyboard events save as one single string -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

javascript - Z-index in d3.js -