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
- Error: User (role: guests) missing scope...
I want to send a verification code to the user and the given phone number and check it and create a session right after the user entered the secret. For me that...
- Apple OAuth Scopes
Hi Hi, I've configured sign in with apple and this is the response i'm getting from apple once i've signed in. I cant find anywhere I set scopes. I remember se...
- [SOLVED] React Native Appwrite SDK not w...
So I'm trying to generate a unique ID using the ID.unique() and its generating properly, but its saying its longer than 36 characters but it isnt.. ```typescri...