'm using appwrite to try two phase login, step 1: await account.createAnonymousSession(); or final appwriteUser = await account.create( userId: ID.unique(), email: _testEmail, password: _testPassword, name: 'Test User' ); await account.createEmailPasswordSession(email: _testEmail, password: _testPassword); to create a trail user and autologin for limited trail purpose, if user want to upgrade account, I used await account.createOAuth2Session(provider: provider); to upgrade trail user to free/premium user, but I got two users and not linked with identities. Whats the wrong with me? I need to two step login with one user.
Recommended threads
- Rate limit
How do I solve "Signup Failed, Rate limit for the current endpoint has been exceeded. Please try again after some time"? I have Pro and around 2k requests per ...
- client.ping() does not appear to work.
After upgrading to 1.8.0, I ran the `starter_for_flutter` and tested the ping. It failed with a "Server Error". I tried this again on my production instance (1...
- Issue with oauth on react native
Hello 😀 I'm building an app with expo react native and I was able to connect to my appwrite project. I can see the tableDB and use basic authentication. I hav...