You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Authorino should implement some support for access token revocation. Even with access tokens being checked in the identity verification step, Authorino could save processing and some external I/O by:
providing an API to be informed about revoked access tokens, thus also ensuring support for immediate access suspension, and
implementing a caching layer for revoked access tokens.
The text was updated successfully, but these errors were encountered:
guicassolato
changed the title
Access token revocation support
Access token revocation
Dec 22, 2020
I wonder if a bloom filter could be used to see if a token might be revoked. That is, check if it "might" be revoked (in the set), and only then do the more expensive IO to introspect the token.
Authorino should implement some support for access token revocation. Even with access tokens being checked in the identity verification step, Authorino could save processing and some external I/O by:
The text was updated successfully, but these errors were encountered: