Skip to content

Instantly share code, notes, and snippets.

@cognivator
Last active October 16, 2016 19:18
Show Gist options
  • Save cognivator/cc14eb250580d9376a466304f463df68 to your computer and use it in GitHub Desktop.
Save cognivator/cc14eb250580d9376a466304f463df68 to your computer and use it in GitHub Desktop.
// Assumes jwt-client has been loaded to define JWT global
(function expireJWT() {
JWT.defaults = {key: 'jwt', tokenPrefix: '', storage: window.localStorage, padding: false};
decodedJWT = JWT.read(JWT.get());
decodedJWT.claim.exp = (Date.now() / 1000) - 1;
JWT.keep(decodedJWT);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment