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 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...
- Error: User (role: guests) missing scope...
I want to send a verification code to the user and the given phone number and check it and create a session right after the user entered the secret. For me that...
- Sign In With Apple OAuth Help
Hi All! I've got a flutter & appwrite app which Im trying to use sign in with apple for. I already have sign in with google working and the function is the sam...