Dear folks,
i'am confused after i sucessfully create an email session, what i hve to do with the session object for further request like storage.
let session = try await account.createEmailSession(
email: "xx@xx.com",
password: "xx")
Have to save the session object in Keyring? How to pass the session object to storage call? Or is the session saved in the account or clinet object?
Once logged in, you can access all resources.
Session only provides some information, see - https://appwrite.io/docs/models/session
The session cookies are saved which are accessed by the Client to perform authenticated requests.
Ok Thanks a lot!
[SOLVED] Session Handling IOS
Recommended threads
- Apple OAuth2 "Registration Not Complete"...
I'm getting a "Registration Not Complete" error when implementing Apple Sign In OAuth2 on self-hosted Appwrite. Environment: Self-hosted Appwrite (latest), iOS...
- Cannot use Apple Oauth2 in React Native/...
Hi! I've trying to add the Apple sign in feature into my Expo App. I followed the docs, but I still receiving the error "Cannot set 'location.href'". Can someon...
- Deeplinking/hosting apple-app-site-assoc...
I'm trying to implement deeplinking so that after a user logs in, they are redirected to the place in my app I want them to go. As far as I understand, I need a...