TokenRequestParams

data class TokenRequestParams(host: String, endPoint: String, clientId: String, clientSecret: String, redirectUri: String, code: String, grantType: String, contentType: String)

Those are params for generating TokenRequest for restTemplate.

Constructors

TokenRequestParams
Link copied to clipboard
fun TokenRequestParams(host: String, endPoint: String, clientId: String, clientSecret: String, redirectUri: String, code: String, grantType: String = "authorization_code", contentType: String = "application/x-www-form-urlencoded")

Properties

clientId
Link copied to clipboard
val clientId: String
the client identifier.
clientSecret
Link copied to clipboard
val clientSecret: String
the client’s shared secret assigned to the IDP.
code
Link copied to clipboard
val code: String
The value of authorization code received earlier.
contentType
Link copied to clipboard
val contentType: String
Request header content type.
endPoint
Link copied to clipboard
val endPoint: String
IDP issue token endpoint.
grantType
Link copied to clipboard
val grantType: String
This value must be "authorization_code".
host
Link copied to clipboard
val host: String
IDP host address with protocol prefix.
redirectUri
Link copied to clipboard
val redirectUri: String
the URI to which the response should be sent.