
'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
- Type String is not a subtype of type int...
In flutter using appwrite: ^17.1.0, ```DocumentList response = await databases!.listDocuments( databaseId: "xxx", collectionId: "xxx", ...
- Appwrite Google OAuth token error
Hello, I am developing an application using React Native, Expo Router, and Appwrite. Since this afternoon, I have been encountering errors related to authentic...
- How to pass session from browser to a mo...
I have a self-hosted Appwrite container. I also have a www page (A) which should acts as login page for different www services (B). User click login in B, is re...
