[][src]Function open_api_hydra::apis::admin_api::introspect_o_auth2_token

pub async fn introspect_o_auth2_token<'_, '_, '_>(
    configuration: &'_ Configuration,
    token: &'_ str,
    scope: Option<&'_ str>
) -> Result<OAuth2TokenIntrospection, Error<IntrospectOAuth2TokenError>>

The introspection endpoint allows to check if a token (both refresh and access) is active or not. An active token is neither expired nor revoked. If a token is active, additional information on the token will be included. You can set additional data for a token by setting accessTokenExtra during the consent flow. For more information read this blog post.