My flutter app (frontend) need to generate a jwt Token to be sent as Auth header bearer token with every request it sends to my backend which my backend will now use the token to get the user.
If the user exists, then the request is authenticated, and if not, it's refused at the backend.
Now I'm getting general rate limit error for endpoint that has to do with createJwt on appwrite on my flutter side.
What's the solution?
And could you suggest a better approach to the jwt Token creation and verification.
Recommended threads
- 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...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- Update User Error
```ts const { users, databases } = await createAdminClient(); const session = await getLoggedInUser(); const user = await users.get(session.$id); if (!use...