Not sure if i am doing something wrong,
I am creating an oauth2 session, then when it loads the success page, it is running an account.get() but it returns with Uncaught (in promise) AppwriteException: User (role: guests) missing scope (account)
are Oauth2 sessions handled differently than email/password?
Probably 3rd party cookie problem. See https://appwrite.io/docs/advanced/platform/custom-domains
how do i access the localstorage fallback
I checked local storage and there's nothing there either
It's going through the oath process successfully but not actually signing in (though it did create the account)
Did you read what I sent? Why are you asking about the local storage fallback? There is no local storage fallback when using oauth
Under third party cookies in the link you sent, it said that it is stored in local storage as a fallback
I see what you're talking about now I think though
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- apple exchange code to token
hello guys, im new here 🙂 I have created a project and enabled apple oauth, filled all data (client id, key id, p8 file itself etc). I generate oauth code form...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...