Any ideas of how to implement revoke token?
Seems nobody has written nothing
we did write about this:
https://auth0.com/blog/2015/03/10/blacklist-json-web-token-api-keys/
Yes. Thanks for your help
Just wondering, why don't you implement token invalidation? It would save us resources that we have to allocate for blacklist (for example redis memory) and API would be more nice/consistent, e.g:
jwToken.destroy(token)
Most helpful comment
Just wondering, why don't you implement token invalidation? It would save us resources that we have to allocate for blacklist (for example redis memory) and API would be more nice/consistent, e.g:
jwToken.destroy(token)