RevokeToken handles access and refresh token revocation.
(ctx context.Context, token string, tokenType TokenType, client Client)
| 57 | type RevocationHandler interface { |
| 58 | // RevokeToken handles access and refresh token revocation. |
| 59 | RevokeToken(ctx context.Context, token string, tokenType TokenType, client Client) error |
| 60 | } |
| 61 | |
| 62 | // PushedAuthorizeEndpointHandler is the interface that handles PAR (https://datatracker.ietf.org/doc/html/rfc9126) |
no outgoing calls