https://github.com/dmytrotus/laravel-jwt
git clone https://github.com/dmytrotus/laravel-jwt.git
docker compose up -d
docker exec -it lara-jwt-php bash
php artisan migrate --seed
php artisan jwt:secret
/auto-login-test-user // the route which log in automatically first user from the database
/secret // the route for showing some hidden data
The route /secret
won't work without /auto-login-test-user
.
After logging in, the jwt token will be stored to the php session. The route /secret
has protected information but this information will be visible, because middleware FromSessionToBearerMiddleware
will automatically pass the token from session to each request.
The token is valid for 1 minute, so when you will update the page after 1 minute, you can see that the token which is returned from /secret
route will change.
You can try to "stole" your token, pass it as "Bearer" and enter the same route /secret
via postman. After 1 minute the token will be expired and you will have the message. "Token is expired"
At the same time on the web interface the token will be re-issued and you can see the protected information as usual.
That's as example about JWT tokens flow.🥳