signInWithPassword
suspend fun signInWithPassword(block: SignInWithPasswordBuilder.() -> Unit): ClerkResult<SignIn, ClerkErrorResponse>
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"
}Content copied to clipboard
Parameters
block
Builder block to configure the identifier and password.