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.
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: