Revoke Identity Server OAuth2 Token
This is only possible with the latest ThinkTecure Identity Server version 3 that implements RFC 7009: https://tools.ietf.org/html/rfc7009 . See the 1.1.0 Release Notes at https://github.com/IdentityServer/Thinktecture.IdentityServer3/blob/master/RELEASES.md which includes a link to https://github.com/IdentityServer/Thinktecture.IdentityServer3/ pull / 858 .
source to share
Have you read this article ( http://leastprivilege.com/2013/11/15/adding-refresh-tokens-to-a-web-api-v2-authorization-server/ )?
I am quoting the paragraph below.
Once a token has been released, there is no "built-in" way to undo it. Or, in other words, you need to write your own mechanism for what often involves checking the database on every request. Opportunity - but often hits the target.
In short, providing a limited lifetime for the authentication token and deleting the applicable solution stored in the client.
source to share