Table of Contents

Class PasswordlessTokenRequestBase

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

Base class for all types of Passwordless requests.

public abstract class PasswordlessTokenRequestBase : IClientAuthentication
Inheritance
PasswordlessTokenRequestBase
Implements
Derived
Inherited Members

Properties

Audience

Unique identifier of the target API to access.

public string Audience { get; set; }

Property Value

string

Remarks

Optional except when requesting a token to call an API.

ClientAssertionSecurityKey

Security Key to use with Client Assertion

public SecurityKey ClientAssertionSecurityKey { get; set; }

Property Value

SecurityKey

ClientAssertionSecurityKeyAlgorithm

Algorithm for the Security Key to use with Client Assertion

public string ClientAssertionSecurityKeyAlgorithm { get; set; }

Property Value

string

ClientId

Client ID of the application.

public string ClientId { get; set; }

Property Value

string

ClientSecret

Client Secret of the application.

public string ClientSecret { get; set; }

Property Value

string

Code

The user's verification code

public string Code { get; set; }

Property Value

string

Scope

Scopes to be requested. Separate multiple values with a space.

public string Scope { get; set; }

Property Value

string

Remarks

Optional, use openid to get an ID Token, or openid profile email to also include user profile information in the ID Token.

SigningAlgorithm

What JwtSignatureAlgorithm is used to verify the signature of Id Tokens.

public JwtSignatureAlgorithm SigningAlgorithm { get; set; }

Property Value

JwtSignatureAlgorithm