appwrite/docs/examples/1.6.x/client-apple/examples/account/create-anonymous-session.md
2025-04-24 14:46:03 +00:00

264 B

import Appwrite

let client = Client() .setEndpoint("https://.cloud.appwrite.io/v1") // Your API Endpoint .setProject("<YOUR_PROJECT_ID>") // Your project ID

let account = Account(client)

let session = try await account.createAnonymousSession()