Class ClientInitiatedBackchannelAuthorizationTokenRequest
- Namespace
- Auth0.AuthenticationApi.Models.Ciba
- Assembly
- Auth0.AuthenticationApi.dll
Contains information required for request token using CIBA.
public class ClientInitiatedBackchannelAuthorizationTokenRequest : IClientAuthentication
- Inheritance
-
ClientInitiatedBackchannelAuthorizationTokenRequest
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
Any additional properties to use.
public IDictionary<string, string> AdditionalProperties { get; set; }
Property Value
AuthRequestId
Unique identifier of the authorization request. This value will be returned from the call to /bc-authorize.
public string AuthRequestId { get; set; }
Property Value
ClientAssertionSecurityKey
Security Key to use with Client Assertion
public SecurityKey ClientAssertionSecurityKey { get; set; }
Property Value
ClientAssertionSecurityKeyAlgorithm
Algorithm for the Security Key to use with Client Assertion
public string ClientAssertionSecurityKeyAlgorithm { get; set; }
Property Value
ClientId
Client ID of the application.
public string ClientId { get; set; }
Property Value
ClientSecret
Client Secret of the application.
public string ClientSecret { get; set; }
Property Value
Organization
Organization for Id Token verification.
public string Organization { get; set; }
Property Value
Remarks
- If you provide an Organization ID (a string with the prefix
org_), it will be validated against theorg_idclaim of your user's ID Token. The validation is case-sensitive. - If you provide an Organization Name (a string without the prefix
org_), it will be validated against theorg_nameclaim of your user's ID Token. The validation is case-insensitive.
SigningAlgorithm
What JwtSignatureAlgorithm is used to verify the signature of Id Tokens.
public JwtSignatureAlgorithm SigningAlgorithm { get; set; }