August 14, 2021

JWT Authentication with Nuxt

In this article, I’m going to show you a way of handling JWT authentication tokens and refresh tokens within Nuxt. We will not use the official nuxt/auth package in this tutorial, since the current version, as of writing this article, is not very stable and not yet fully documented and tested.

JWT Authentication with Nuxt

Install necessary dependencies

First things first, we’re going to need to install some dependencies for handling the tokens and cookies for storing the keys.

The cookie-universal-nuxt and vuex-persistedstate packages are responsible for setting and updating the cookies we’re using to store the access and refresh tokens from the API. @nuxtjs/axios is used to make API calls with the tokens and/or to retrieve the tokens.

Persisting the tokens

To make authorized API-Calls we need to store the access and refresh tokens somewhere. We will make use of the Vuex Store inside Nuxt for this, and we will use the vuex-persistedstate package to persist the keys on reloads through cookies.

Here we’re setting up the vuex-persistedstate plugin to use our cookie library for persisting the tokens in our application. Within paths we’re defining that only our tokens should be persisted within the cookie to not exceed the size limit of cookies. The cookie in our example is valid for 14 Days.

Don’t forget to add the plugin to your nuxt.config.js file:

Vuex Store

Now that we have configured our persisting plugin for the vuex store, we also need to write our mutations and actions to handle the token related tasks. For this we’re going to create a file within the store directory of nuxt called auth.js.

In this file we defined a few actions for handling our token requests.

  • login is responsible for retrieving both tokens from the API by providing the user credentials via a POST request.
  • register is doing more or less the same as login, except that a new user gets created with the given credentials.
  • getUser is the API call responsible for retrieving the user information after the tokens have been received.
  • refresh is refreshing our access token by providing the refresh token to the API. In response, we will receive a new access token.

Authenticated requests

Now that we have our tokens stored and persisted, it’s time to make authenticated requests to the API. Axios has a built-in feature called “interceptors” which we’re going to use to authenticate our API Calls dynamically with the stored token.

Now axios will check on each request if the user has an access token and will send the Authorization-header payload to that access token automatically.

Again, don’t forget to add the axios plugin to your nuxt.config.js:

Refreshing tokens

Now we’re all set-up and could end the tutorial here, but what happens if the token is expired or invalid?

When access tokens expire or become invalid but the application still needs to access a protected resource, the application faces the problem of getting a new access token without forcing the user to once again grant permission. To solve this problem, OAuth 2.0 introduced an artifact called a refresh token. A refresh token allows an application to obtain a new access token without prompting the user.
— Understanding refresh tokens via Auth0

To handle this we can update our axios interceptor to handle the returned API Error and automatically try to refresh our access token, before trying the request again. For this we’re modifying our axios.js plugin file:

Here we added the onError handler to listen for token related error codes from the API, try to refresh the access token using our refresh token and retrying the failed request again. If the token couldn’t be refreshed, or an error occurred we’re login out the user from the application.

Refresh tokens on server-side

Since our access token shouldn’t be valid for a long time, we can safely assume that if the user reloads the page or first connects to the server again, that our access token is expired. By using the nuxtServerInit hook in our store we can automatically try to refresh the access token. To achieve this, we’re updating our store like this:

With this updated action our server will now attempt to refresh the access token on every server request automatically.

Wrap up

Now we have a fully working and mostly automated solution for handling JWT in Nuxt. Our tokens are persisted in a cookie and are available for client- and serverside requests.

Kurt blog author

Kurt Gierke

Frontend Developer

kurt@factorial.io