Skip to main content

Introspect a token for a given AuthorizationServer

POST 

/oauth/introspect/:tokenIntrospectorName

Validates the submitted token against the AuthorizationServer identified by the path parameter and returns an introspection response per RFC 7662. The path parameter must match the name of an AuthorizationServer AuthState registered with this service instance, and valid client credentials must be supplied in the Authorization header. If the token is active, the response includes "active": true along with metadata claims; if expired, revoked, or unknown, the response is {"active": false}. Use this form when multiple AuthorizationServer instances are configured in the service.

Request

Path Parameters

    tokenIntrospectorName stringrequired

Header Parameters

    authorization string

Body

    token string
    token_type_hint string

Responses

Successful operation

Schema
    any
Loading...