Skip to content

Commit

Permalink
Merge branch 'master' into adds-jwks-blog
Browse files Browse the repository at this point in the history
  • Loading branch information
nkshah2 authored Aug 9, 2023
2 parents 5a0abeb + 55ba136 commit c3a2df6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion buildBlog
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ shift $((OPTIND - 1))
# build the blog
echo -e "${GREEN}Building blog...${NC}"

npm run build >/dev/null 2>/dev/null
npm run build
doesBuild=$?

if [ $doesBuild -ne 0 ]
Expand Down
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 c3a2df6

Please sign in to comment.