Introduction to OIDC Server
Implemented StandardsTechnical Requirements
Abblix.Oidc.Server
Abblix.Oidc.Server.ModelAddressAuthorizationRequestAuthorizationRequest.ParametersAuthorizationResponseBackChannelAuthenticationForbiddenBackChannelAuthenticationRequestBackChannelAuthenticationRequest.ParametersBackChannelAuthenticationSuccessBackChannelAuthenticationSuccess.ParametersBackChannelAuthenticationUnauthorizedBackChannelPingNotificationRequestBackChannelPingNotificationRequest.ParametersBackChannelPushNotificationRequestBackChannelPushNotificationRequest.ParametersBackChannelTokenPushRequestBackChannelTokenPushRequest.ParametersClientRegistrationRequestClientRegistrationRequest.ParametersClientRegistrationResponseClientRequestClientRequest.ParametersConfigurationResponseConfigurationResponse.ParametersDeviceAuthorizationRequestDeviceAuthorizationRequest.ParametersDeviceAuthorizationResponseDeviceAuthorizationResponse.ParametersEndSessionRequestEndSessionRequest.ParametersErrorResponseIntrospectionRequestIntrospectionRequest.ParametersMtlsAliasesPushedAuthorizationResponseReadClientSuccessfulResponseRequestedClaimDetailsRequestedClaimsRequestedClaims.ParametersRevocationRequestRevocationRequest.ParametersTokenRequestTokenRequest.ParametersTokenResponseUserInfoRequestUserInfoRequest.Parameters
Cette page n'a pas encore été traduite.
RevocationRequest Class
Parameters of an OAuth 2.0 token revocation request (RFC 7009 §2.1) sent to the
revocation_endpoint. Client authentication is required and is supplied alongside this payload.
public record RevocationRequest : System.IEquatable<Abblix.Oidc.Server.Model.RevocationRequest>Inheritance System.Object → RevocationRequest
Implements System.IEquatable<RevocationRequest>
Properties
RevocationRequest.Token Property
The token parameter (RFC 7009 §2.1): the access token or refresh token string the client
is asking the authorization server to revoke. Required.
public string Token { get; set; }Property Value
RevocationRequest.TokenTypeHint Property
The optional token_type_hint (RFC 7009 §2.1) advising whether Token is an
access_token or refresh_token, allowing the server to look it up faster.
public string? TokenTypeHint { get; set; }