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?
Summary
The user is confused about what to do with a session object after successfully creating an email session on iOS. They are unsure whether they should save the session object in Keyring or how to pass it to a storage call.
The session object is saved by the account or client object. So, there is no need to save it separately. Once logged in, the session cookies are saved and can be accessed by the client to perform authenticated requests.
Solution: There is no need to save the session object separately. It is automatically saved by the account or client object.