LoginResponse

data class LoginResponse(val allowedExternalRedirectUrls: List<String>? = null, val cookieExpiration: CookieExpirationResponse? = null, val nonce: NonceResponse? = null, val preserveUrlFragmentsForLogins: Boolean? = null, val routes: LoginRoutesResponse? = null, val tokenStore: TokenStoreResponse? = null)

The configuration settings of the login flow of users using App Service Authentication/Authorization.

Constructors

Link copied to clipboard
fun LoginResponse(allowedExternalRedirectUrls: List<String>? = null, cookieExpiration: CookieExpirationResponse? = null, nonce: NonceResponse? = null, preserveUrlFragmentsForLogins: Boolean? = null, routes: LoginRoutesResponse? = null, tokenStore: TokenStoreResponse? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored. This is an advanced setting typically only needed by Windows Store application backends. Note that URLs within the current domain are always implicitly allowed.

Link copied to clipboard

The configuration settings of the session cookie's expiration.

Link copied to clipboard
val nonce: NonceResponse? = null

The configuration settings of the nonce used in the login flow.

Link copied to clipboard

true if the fragments from the request are preserved after the login request is made; otherwise, false.

Link copied to clipboard

The routes that specify the endpoints used for login and logout requests.

Link copied to clipboard

The configuration settings of the token store.