Hi, I am creating a login system in unity where it connect with appwrite for account creation and sessions, but moving further, I need to create databases within the application to appwrite, for that I need JWT token while creating a document, How to get JWT Token from appwrite to use it in Unity
You need to be authenticated in order to create a JWT token. The JWT token also has a very short lifespan.
In 1.5, we're planning to add support for creating sessions using a server SDK so that might be a solution for you
Sorted it out, wrote my own SDK👍🏻
[SOLVED] Need to Obtain JWT Token
Recommended threads
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...
- 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...
- How to Avoid Double Requests in function...
I'm currently using Appwrite's `functions.createExecution` in my project. I want to avoid double requests when multiple actions (like searching or pagination) a...