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 Issue (maybe?)
Hi there, I'm relatively new to programming and am following a tutorial on youtube just to get an idea of how this all is suppossed to work. Now Im setting up t...
- Imagine.dev Auth Error
Be careful! The redirect_uri is not associated with this application. The application might be misconfigured or could be trying to redirect you to a website y...
- Error 400: redirect_uri_mismatch
Hi team, Google OAuth was working fine with our Appwrite Cloud setup until yesterday. We did not change any configuration in Appwrite, Google Cloud, or our cod...