
Hi guys,
I have an issue, I hope you can help me.
I am trying to implement a login for my Flutter web app.
I want to implement that if the user closes the browser or reloads the page the Flutter app searches for the session id, which was saved in the local storage of the browser. With the session id I can get the user id which I use to retrieve the user object. In that way, I repopulate the data in the classes and the pages without having the user log in again.
My issue is that to retrieve a user by user id I need to use the Dart SDK. The user object of the Dart SDK is different from the Flutter SDK.
I could retrieve the user by using account.get() from the Flutter SDK, but all classes and objects are rebuilt when I refresh the page in the browser so the object will be null.
Do you have a workaroud for the issue?
Recommended threads
- Flutter OAuth2 Google does not return to...
When the flow starts, the browser opens, I select an account, and it keeps showing: """ Page not found The page you're looking for doesn't exist. `general_rout...
- Claiming Guest-Created Documents After S...
I'm wondering if it's possible for a guest or anonymous user to create a document and attach an email address to it, so that the document can later be claimed b...
- Appwrite REST API Docs in LLM-Friendly F...
Is there a version of the Appwrite REST API documentation available in a format suitable for LLM vector embedding? Specifically, I’m referring to the following ...
