Skip to content

Commit

Permalink
Merge pull request #169 from supertokens/jwt-blog-fix
Browse files Browse the repository at this point in the history
fixes copy in jwt blog
  • Loading branch information
nkshah2 committed Aug 8, 2023
2 parents f680b04 + 17748c6 commit 0ead748
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/what-is-jwt/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ You may have noticed that in the JWT (that is issued by Google) example above, t
- **at_hash**: The hash of the access token. The OAuth access token is different from the JWT in the sense that it’s an opaque token. The access token’s purpose is so that the client application can query Google to ask for more information about the signed in user.
- **email**: The end user’s email ID
- **email_verified**: Whether or not the user has verified their email.
- **iat**: The time (in milliseconds since epoch) the JWT was created
- **exp**: The time (in milliseconds since epoch) the JWT was created
- **iat**: The time (in milliseconds since epoch) the JWT was created.
- **exp**: The time (in milliseconds since epoch) the JWT will expire.
- **nonce**: Can be used by the client application to prevent replay attacks.
- **hd**: The hosted G Suite domain of the user

Expand Down

0 comments on commit 0ead748

Please sign in to comment.