Security

The application we have built uses JSON Web Token (https://jwt.io/) based authentication. Navigate to server\auth\index.ts and createJWToken, Authenticate and Authorize methods exported. createJWToken is used to create a new JWT token, taking in the user object as input.

The expiry time of the token is defined by TOKEN_MAXAGE that is defined in the .env file. Authenticate is an Express middleware, that processes the incoming request looking for the JWT token. Then this token is decoded and the user is fetched. Authorize is also an express middleware that authorizes whether a specific role user can access a specific type of API. For example, if we head over to server\routes\user.ts and look at router.delete('/user/:id', Authenticate, ...

Get Google Cloud AI Services Quick Start Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.