AuthenticationResponseResult
Possible outcomes of creating an OpenID Authentication Response, to be sent back to the verifier.
Inheritors
Types
Link copied to clipboard
Use the Digital Credential API to return the AuthenticationResponseParameters in params.
Link copied to clipboard
Wallet returns the AuthenticationResponseParameters as form parameters, which shall be posted to redirect_uri of the Relying Party, i.e., clients should execute an HTTP POST with params to url.
Link copied to clipboard
data class Redirect(val url: String, val params: AuthenticationResponseParameters? = null, val error: OAuth2Error? = null) : AuthenticationResponseResult
Wallet returns the AuthenticationResponseParameters as fragment parameters appended to the redirect_uri of the Relying Party, i.e., clients should simply open the url. The params (or when applicable the error) are also included for further use.