Oauth2Auth Code Flow Response
data class Oauth2AuthCodeFlowResponse(val authCode: String, val clientId: String, val clientSecret: SecretResponse, val enablePkce: Boolean, val pkceVerifier: String, val redirectUri: String, val scopes: List<String>)
Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.
Constructors
Link copied to clipboard
fun Oauth2AuthCodeFlowResponse(authCode: String, clientId: String, clientSecret: SecretResponse, enablePkce: Boolean, pkceVerifier: String, redirectUri: String, scopes: List<String>)