
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
- Auth showing wrong numbers of users
I have 6 verified users but it shows 5 24 hours before I have 5 users that time its showing 4 users. Project ID: `68aed705001ef67ac979`
- Appwrite + Google OAuth session created,...
Hey everyone, I’m running into a weird issue with Appwrite’s Google OAuth provider and would love some insight. Here’s my setup: - **Stack:** React app...
- createPhoneToken not working with expo
` const phoneResponse = await account.createPhoneToken(response.$id, phone);` this gives this error: `OTP error: [AppwriteException: Server Error]` * phone i...
