inspac-sdk
/
com.thoughtworks.inspac.sdk.model.dto
/
InitAuthRequest
Init
Auth
Request
data class
InitAuthRequest
(host:
String
, endPoint:
String
, clientId:
String
, redirectURI:
String
, scope:
String
, responseType:
String
, nonce:
String
, state:
String
)
Content copied to clipboard
Request Body for initiating authentication request.
Constructors
Properties
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())
Content copied to clipboard
Properties
clientId
Link copied to clipboard
val
clientId
:
String
Content copied to clipboard
The client identifier assigned to the Relying Party during its registration.
endPoint
Link copied to clipboard
val
endPoint
:
String
Content copied to clipboard
IDP endpoint for redirecting browser.
host
Link copied to clipboard
val
host
:
String
Content copied to clipboard
IDP host address with protocol prefix.
nonce
Link copied to clipboard
val
nonce
:
String
Content copied to clipboard
A random generated UUID to avoid replay attack.
redirectURI
Link copied to clipboard
val
redirectURI
:
String
Content copied to clipboard
The URI to which the response should be sent.
responseType
Link copied to clipboard
val
responseType
:
String
Content copied to clipboard
Default value is: "code".
scope
Link copied to clipboard
val
scope
:
String
Content copied to clipboard
Default value is: "openid".
state
Link copied to clipboard
val
state
:
String
Content copied to clipboard
A random generated UUID to maintain state between the request and the callback.