im testing api endpoints with postman using the bearer token found in the request headers. i’ll hit my org authorization server with the /revoke endpoint and then confirm that the access token is indeed false by requesting /introspect endpoint (active: false), but that same bearer token is still working for subsequent requests to my api.
should that same bearer token be able to access my authorization-protected endpoints, am i misunderstanding the flow, or are the tokens cached somehow?
for context, my API is .net framework and the endpoints have the [Authorize] attribute tags.
any insight is greatly appreciated.