Skip to content

Instantly share code, notes, and snippets.

@silvolu
Last active September 17, 2018 17:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save silvolu/c7cc8379239c6414dc887019efe630d1 to your computer and use it in GitHub Desktop.
Save silvolu/c7cc8379239c6414dc887019efe630d1 to your computer and use it in GitHub Desktop.
IdToken content sample
{
// The unique ID of the user's Google Account
"sub": 1234567890,
// The token's issuer
"iss": "https://accounts.google.com",
// Client ID assigned to your Actions project
"aud": "123-abc.apps.googleusercontent.com",
// Unix timestamp of the token's creation time
"iat": 233366400,
// Unix timestamp of the token's expiration time
"exp": 233370000,
"name": "Jan Jansen",
"given_name": "Jan",
"family_name": "Jansen",
// If present, the user's email address
"email": "jan@gmail.com",
"locale": "en_US"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment