Code Monkey home page Code Monkey logo

Comments (7)

Thalhammer avatar Thalhammer commented on July 21, 2024 1

@laoshanxi
Short answer: You cant, thats not something jwt was designed for.
Long answer:
You could keep a database of revoked tokens and check against that (something like memcached/redis). However that kind of kills the main benefit of jwt, which is to allow for nothing shared architectures.

from jwt-cpp.

prince-chrismc avatar prince-chrismc commented on July 21, 2024

Could you not do

const auto now = std::chrono::system_clock::now();
auto token = jwt::create()
	.set_issuer("auth0")
	.set_issued_at(now)
	.set_expires_at(now /* minus one ??? */)
	.sign(jwt::algorithm::hs256{"secret"});

from jwt-cpp.

laoshanxi avatar laoshanxi commented on July 21, 2024

Thanks @Thalhammer ,

For client side, the simple solution can be clear the token memory in client side, the client have no token can not login again.

For safe service side, server should hold the none-expired token which has been logged out。

from jwt-cpp.

Thalhammer avatar Thalhammer commented on July 21, 2024

Yeah normally you just wipe it from memory on the client side. Most jwt based apps dont really do a
"logout" feature. Instead the common approach is to use short lived tokens (like 30min or an hour) and on "logout" you just wipe all info from the client and let the token expire. While the client is still online you can just periodically refresh the token. That also gives you sort of an auto logout.

from jwt-cpp.

laoshanxi avatar laoshanxi commented on July 21, 2024

Yes, periodic refresh token seems good (if do not consider performance cost), use old none-expired token to renew a token.

from jwt-cpp.

Thalhammer avatar Thalhammer commented on July 21, 2024

Refreshing the token every 30 or so minutes should not have a notable performance impact. Make sure you renew your token soon enough, so you still have enough time to do (and possibily retry) the request. You can parse the token and get the exp value in JS to calculate when to refresh it.

from jwt-cpp.

laoshanxi avatar laoshanxi commented on July 21, 2024

Got it, thanks for the explaination.

from jwt-cpp.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.