hatcha6
hatcha6
BABetter Auth
Created by hatcha6 on 3/20/2025 in #help
Phone number sign up doesn’t create a record in the Account table?
Hello I want to use better-auth for my nextjs app with phone numbers only authentication. sign up is fine but login complains that there’s no credential account found. This is my code for sign up right now that works correctly: await authClient.signUp.email({ name: User${values.phoneNumber}, email: ${values.phoneNumber}@my-site.com, password: values.password, }); await authClient.signIn.email({ email: ${values.phoneNumber}@my-site.com, password: values.password, });
await authClient.phoneNumber.sendOtp({ phoneNumber: values.phoneNumber, });
3 replies