JWT Authentication
Learn how you can secure your Rocket web application by using JWT tokens.
Description
This example shows how to use Rocket request guards for authentication with JSON Web Tokens (JWT for short).
The idea is that all requests authenticate first at https://authentication-rocket-app.shuttle.app/login to get a JWT.
Then the JWT is sent with all requests requiring authentication using the HTTP header Authorization: Bearer <token>
.
This example uses the jsonwebtoken
which supports symmetric and asymmetric secret encoding, built-in validations, and most JWT algorithms.
However, this example only makes use of symmetric encoding and validation on the expiration claim.
You can clone the example below by running the following (you’ll need shuttle
CLI installed):
Three Rocket routes are registered in this file:
/public
: a route that can be called without needing any authentication./login
: a route for posting a JSON object with a username and password to get a JWT./private
: a route that can only be accessed with a valid JWT.
Code
Your main.rs
should look like this:
Your claims.rs
should look like this:
Usage
Once you’ve cloned this example, launch it locally by using shuttle run
. Once you’ve verified that it’s up, you’ll now be able to go to http://localhost:8000
and start trying the example out!
First, we should be able to access the public endpoint without any authentication using:
But trying to access the private endpoint will fail with a 403 forbidden:
So let’s get a JWT from the login route first:
Accessing the private endpoint with the token will now succeed:
The token is set to expire in 5 minutes, so wait a while and try to access the private endpoint again. Once the token has expired, a user will need to get a new token from login.
Since tokens usually have a longer than 5 minutes expiration time, we can create a /refresh
endpoint that takes an active token and returns a new token with a refreshed expiration time.
Was this page helpful?