InitAuthRequest

data class InitAuthRequest(host: String, endPoint: String, clientId: String, redirectURI: String, scope: String, responseType: String, nonce: String, state: String)

Request Body for initiating authentication request.

Constructors

InitAuthRequest
Link copied to clipboard
fun InitAuthRequest(host: String, endPoint: String, clientId: String, redirectURI: String, scope: String = "openid", responseType: String = "code", nonce: String = randomUUID().toString(), state: String = randomUUID().toString())

Properties

clientId
Link copied to clipboard
val clientId: String
The client identifier assigned to the Relying Party during its registration.
endPoint
Link copied to clipboard
val endPoint: String
IDP endpoint for redirecting browser.
host
Link copied to clipboard
val host: String
IDP host address with protocol prefix.
nonce
Link copied to clipboard
val nonce: String
A random generated UUID to avoid replay attack.
redirectURI
Link copied to clipboard
val redirectURI: String
The URI to which the response should be sent.
responseType
Link copied to clipboard
val responseType: String
Default value is: "code".
scope
Link copied to clipboard
val scope: String
Default value is: "openid".
state
Link copied to clipboard
val state: String
A random generated UUID to maintain state between the request and the callback.