
I'm following a youtube tutorial: https://www.youtube.com/watch?v=ZBCUegTZF7M&t=7635s&ab_channel=JavaScriptMastery
and am gettin this error.
My instinct is to add Guest role, but the tutorial doesn't specify doing so in order to log in.
Any help would be appreciated.

In my Storage
settings is the only permissions where I'm setting guest role

User is already created in database, but trying to sign in results in this error

Here's my code:
// Sign In
export async function signIn(email, password) {
try {
const session = await account.createEmailSession(
email,
password
);
return session;
} catch (error) {
throw new Error(error);
}
}
Recommended threads
- account.get imageUrl
We dont get imageUrl of users when do account.get(), i need to manually fetch,and set it. but this should be default behaviour.
- Internal 500 Server Error
I don't have much information but I am unable to create anything on database, Auth users are creating but not able to fetch into database
- CORS + 401 Error with Appwrite Authentic...
I'm getting a CORS + 401 Error with Appwrite Authentication Access to fetch at 'https://cloud.appwrite.io/v1/account/sessions/email' from origin 'https://my-c...
