signInWithPassword

Signs in with password authentication.

Return

A ClerkResult containing the SignIn object on success, or a ClerkErrorResponse on failure.

Example usage:

val signIn = clerk.auth.signInWithPassword {
identifier = "user@email.com"
password = "secretpassword"
}

Parameters

block

Builder block to configure the identifier and password.