Is it possible to login a user server side? The account api seems to be limited in the Node sdk to only verifying sessions. I’d ideally like my app to work without JS so having to use a client sdk for login is annoying.
See: Lack of session creation on servers
Not out of the box. You'll need to use Appwrite REST api and take care of all the cookies
Oh sweet. The almost app link looks useful. Thanks
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- delete document problems
i don't know what's going on but i get an attribute "tournamentid" not found in the collection when i try to delet the document... but this is just the document...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...