⚠️ This lesson is retired and might contain outdated information.

Provide Users With A JSON Web Token

Joel Lord
InstructorJoel Lord
Share this video with your friends

Social Share Links

Send Tweet
Published 6 years ago
Updated a year ago

In this lesson, we will build a token issuer that will return a JSON Web Token. This simple server will have a single endpoint for login that queries a list of users and returns a web token for the matching user.

Instructor: [00:00] Since this lesson is all about creating an authentication server, let's start by creating a user database. We will use a user array that contains all of our users and store the passwords in plain text right now.

[00:11] Warning, do not do this in production. You should always encrypt passwords and ensure that no sensitive information about your users is accessible to potential hackers. For the sake of this lesson, let's just do it this way.

[00:26] We can now start with our /login POST request. This is the request that will handle user authentication. The first thing to check is if the request is formatted correctly. We are expecting both a username and a password.

[00:45] If we don't have both, we return a status code of 400 for invalid request, and we send a message to the user, saying that they need a username and password. We can then do a return to stop the execution of this callback.

[01:08] Now, if we have a valid request, we need to check if the user is in our database. Using the find method, we will check if we have a user that have a username and password that matches those in the request.

[01:20] If we find a matching user, it will be stored in a constant, user. If we can't find a matching user, we can send a response with the status of 401 for unauthorized. We can also send a message to the user, saying user is not found. Once again, we return to stop the execution of this callback.

[01:45] If we have a valid user, we will send back a JSON web token as a response. In order to do so, we will need to require the JSON web token library. We will also need to install it using npm install jsonwebtoken.

[02:13] Now that it's installed, we can use the sign method to create a sign token. We start by passing the payload we want to attach in the JWT. We then pass a string which is the secret key. In this case, it's mysupersecretkey.

[02:34] Finally, we can pass some options like in how much time this token will expire, so we'll say expires in three hours for us. Finally, we can send back our response with a status of 200 and a JSON object with our access token.

[03:01] We can now run the authentication server using node end, the name of the file. Let's now open postman to test this out.

[03:10] If we try a GET request on the server, we're getting a 404 because we haven't defined any GET route on the server. Let's change that to a POST and use the /login endpoint that we just created. Sending a request to that URL without a body will give us a 400 with a message, "You need a username and password." Let's try to add those.

[03:29] By going in body, select raw and make sure that the type is set to application/json. You can now type in a username and password in JSON format. If we type your wrong password and we try this, we are getting the "User not found" message. If we fix the password to use the right one, we get our JSON object with an access token.

[03:56] You can copy and paste this JSON web token in a website like jwt.io and you will be able to see the content. If you try it with another user like guest, you will get a different access token, and it we go into jwt.io, we can once again see all of the content and we can see that it's different this time.

[04:28] That's it. You have now created your first authentication server.

jpbamberg1993
jpbamberg1993
~ 6 years ago

Why are you validating the passwords match? Why does that matter?

jpbamberg1993
jpbamberg1993
~ 6 years ago
Joel Lord
Joel Lordinstructor
~ 6 years ago

I here, we validate that the user provided password matches the user password on the server database. This way, we are authenticating the user. Without a valid password, we are not serving a JWT so he can't login.

Brendan Whiting
Brendan Whiting
~ 5 years ago

What does sub mean where we sign the jwt?

Joel Lord
Joel Lordinstructor
~ 5 years ago

sub stands for subject. Basically, it tells the JWT consumer "who/what this token is about". In most cases, it represents the user id.

Markdown supported.
Become a member to join the discussionEnroll Today