Skip to main content
function signInWithSms(options: SignInWithSmsOptions): Promise<SignInWithSmsResult>;
Initiates the sign in flow with a phone number via SMS.

Parameters

ParameterTypeDescription
optionsSignInWithSmsOptionsThe options for the sign in.

Returns

Promise<SignInWithSmsResult> The result of the sign in.

Example

const result = await signInWithSms({
  phoneNumber: "+14155552671"
});
I