Hello, kinda newbie here. I am getting the following errors while trying to create and sign up on my account. I can see the user being created on the appwire site but somehow I am unable to successfully log in. Any idea what may be wrong? I checked out the documentation but I didn't fully understand what I should change to my code. I can provide all the necessary files
What framework are you using? What does your code look like?
I am using React and this is how a part of my code from the config.ts looks like
what does your login code look like
it should be this one, on the sign up form. If there is something else required let me know π
I guess what i'm asking, where are you using appwrite to authenticate the user.
should be this section from api.ts
What is on api.ts line 79
After the user is created you'll need to then create a session for that user. Doing something like this.
const { email, password, name } = user;
const newAccount = await account.create(
ID.unique(),
email,
password,
name
);
const newSession = await account.createEmailPasswordSession(email, password);
Recommended threads
- proccessing problems
A database schema operation is stuck in my Frankfurt project. In the matryq database, the workspaceId attribute of the coaching_activity_entries collection rema...
- User columns stuck on processing
Hi β on Appwrite Cloud (Free), Project ID 69d7dd8200098ed8560c, database mylestone-db. Attributes/columns are stuck in "processing" indefinitely across two coll...
- User column is processing
I am still encountering the processing tag after creating a column in my database. and its not a network or refresh issue, i have refreshed over and over, shutd...