Skip to content

Instantly share code, notes, and snippets.

@khle
Created September 3, 2016 13:29
Show Gist options
  • Select an option

  • Save khle/873e57573df0ebfb0c655e9523ca8e43 to your computer and use it in GitHub Desktop.

Select an option

Save khle/873e57573df0ebfb0c655e9523ca8e43 to your computer and use it in GitHub Desktop.
Azure AD Access and refresh tokens
{
"token_type": "Bearer",
"scope": "user_impersonation",
"expires_in": "3599",
"ext_expires_in": "0",
"expires_on": "1472912660",
"not_before": "1472908760",
"resource": "http://yourapp.azurewebsites.net",
"access_token": "eyJ0eXAiOiJK...",
"refresh_token": "AQABAAAAAAB...",
"id_token": "eyJ0eXAiOiJKV1Qi..."
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment