So I am using django rest framework, and i am using simple jwt for token authentication, and i want to implement this (if the user hasn't been active on the website for 30 min then the token should expire and the user should be redirected to login page).
How should i do this, for your information i know about session authentication, however, i don't want to use it.
Note: If you have any other security methods/approaches i am open to hearing them since this is the only one that i know and i don't know how to implement it :-)
i have tried adding some fields in the payload, so i can use it to determine if the user is active or not, however idk how to make the server check it, since the only way that i check on the token is when the clinet make an api call