Rank 1: Thread
Hi guys, I have a multistep register form with more info than name, email and password as seen with most tutorial. Anytime I sned a request with all these info I get a bad request. How do I solve or appwrite register auth only allow the name, email and password values only?
Please I will need help on this one
is this valid?: await account.create(
ID.unique(),
userInfo.name,
userInfo.email,
userInfo.password,
userInfo.linkedin,
userInfo.twitter,
userInfo.github,
userInfo.about,
userInfo.bio
);
I am getting a bad request error and this is coming from my Register page and utils/ Authcontext
I will appreciate your help as we are very close to the deadline