I just implemented email verification and I keep getting this error as a response even though I know for a fact the correct userId and secret are being sent. But worse, I can see that the account is being verified correctly on the server so its working as I would expect except that its returning this error which makes handling the UI for the user really hard cause it looks like it failed when it didn't.
AppwriteException: user_invalid_token, Invalid token passed in the request. (401)
Recommended threads
- Having issues with login via CLI
``` ~/appwrite appwrite login --endpoint https://localhost/v1 --verbose ? Enter your email myvalidemai...
- Attributes Confusion
```import 'package:appwrite/models.dart'; class OrdersModel { String id, email, name, phone, status, user_id, address; int discount, total, created_at; L...
- Send Email Verification With REST
I am using REST to create a user on the server side after receiving form data from the client. After the account is successfully created i wanted to send the v...