DeviceAuthorizationStatus Enum
Abblix.Oidc.Server
Abblix.Oidc.Server.Features.DeviceAuthorization
DeviceAuthorizationStatus Enum
Represents the various states of a device authorization request as defined in RFC 8628. This enumeration defines the possible statuses that a device authorization request can have, facilitating the management of the device authorization flow.
public enum DeviceAuthorizationStatus
Fields
Pending 0
Indicates that the authorization request is pending and the user has not yet completed authentication. The client should continue polling the token endpoint.
Denied 1
Indicates that the user has denied the authorization request. The client will receive an access_denied error when polling.
Authorized 2
Indicates that the user has successfully authorized the device. The client will receive tokens when polling the token endpoint.