I am using the setInterval
function to do an API call to get refresh token after some interval. Every time if I refresh the browser setInterval
timer gets clear and starts counting from zero. My access token gets expired and the refresh token never getting a call and user logged out. Is there any way to deal with this?
useEffect(() => {
const interval = setInterval(() => {
setTokenByReSendingAuth(); //dispatch action
}, 300000);
return () => clearInterval(interval);
}, [setTokenByReSendingAuth]);
Using MERN:
Heres your dependencies:
jwt-decode: https://www.npmjs.com/package/jwt-decode
passport-jwt: http://www.passportjs.org/packages/passport-jwt/
passport: https://www.npmjs.com/package/passport
jsonwebtoken: https://www.npmjs.com/package/jsonwebtoken
bcryptjs: https://www.npmjs.com/package/bcryptjs
Create an express server.js like this:
Install your dependencies:
Add this to your package.json in whatever directory your server is in:
Now to the Auth part:
Make a config folder for your passport and URI:
In a .env file:
Make a passport.js file:
This adds the user's token to all request headers, it is automatically running since we used it in our server.js file.
Make a middleware folder for your backend:
Add an auth.js file:
This file is attached to your routes in the header, like this:
The route to login and register should look like this:
That's basically it for the backend auth routing side of things, but for the client to get there token in the browser you need to add this stuff to the client:
In your index.js add this outside a component to run on every render no matter what:
This checks to see if there's a jwttoken in the browser, it decodes it and sets the user data into the state to be used globally. It also redirects the user.
Create login, register and logout functions:
If you have any private components you only want logged in users to access use this PrivateRoute Component wrapper:
This redirects any user not logged in to the home page
Use it as a react-router-dom element:
If you have any questions, let me know. :)