Created
September 3, 2016 13:29
-
-
Save khle/873e57573df0ebfb0c655e9523ca8e43 to your computer and use it in GitHub Desktop.
Azure AD Access and refresh tokens
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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