I am using JWT for authorisation of my application and stored the Token in local storage because my application in ReactJS with a backend of goLang.
I don't want to store the token in my DB but I have removed the token from local storage while logout.
but with this, I am facing the issue as per below.
I removed the token from local storage while logout but the user still accessible their token if he copied or hit the request using postman or any other application for rest APIs until token expired so I want to forcefully expire the toke while logging out so what can I do for this.
So what can I do for this?