Login Response
data class LoginResponse(val allowedExternalRedirectUrls: List<String>? = null, val cookieExpiration: CookieExpirationResponse? = null, val nonce: NonceResponse? = null, val preserveUrlFragmentsForLogins: Boolean? = null, val routes: LoginRoutesResponse? = null)
The configuration settings of the login flow of users using ContainerApp Service Authentication/Authorization.
Constructors
Link copied to clipboard
constructor(allowedExternalRedirectUrls: List<String>? = null, cookieExpiration: CookieExpirationResponse? = null, nonce: NonceResponse? = null, preserveUrlFragmentsForLogins: Boolean? = null, routes: LoginRoutesResponse? = null)
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
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.