Table of Contents

Class ClientInitiatedBackchannelAuthorizationResponse

Namespace
Auth0.AuthenticationApi.Models.Ciba
Assembly
Auth0.AuthenticationApi.dll

Contains information about the client initiated backchannel authorization (CIBA) response.

public class ClientInitiatedBackchannelAuthorizationResponse
Inheritance
ClientInitiatedBackchannelAuthorizationResponse
Inherited Members

Properties

AuthRequestId

Unique id of the authorization request. Can be used further to poll for /oauth/token.

[JsonProperty("auth_req_id")]
public string AuthRequestId { get; set; }

Property Value

string

ExpiresIn

Tells you how many seconds we have until the authentication request expires.

[JsonProperty("expires_in")]
public int ExpiresIn { get; set; }

Property Value

int

Interval

Tells how many seconds you must leave between poll requests.

[JsonProperty("interval")]
public int Interval { get; set; }

Property Value

int