The web updateRecovery function seems to accept four arguments based on the documentation given here, https://appwrite.io/docs/products/auth/email-password#password-recovery. But the web sdk accepts only three arguments i.e. userId, secret, and password. So while trying to reset password with updateRecovery function from the sdk with only three args, returns an error with message : "Param passwordAgain is not optional." and status code 400. The web sdk versio is 14.0.0
I think you need to repeat the password?
'[USER_ID]',
'[SECRET]',
'password',
'password'
);```
Recommended threads
- Problem with Google Workspace at DNS Rec...
Hello, I bought a domain at Namecheap, and Google Workspace used to work there, but now that I switched from Custom DNS to Appwrite's nameservers, it doesn't w...
- change role of a team member in Appwrite
It's not possible to add/change roles of a team meber in Appwrite Frontend. When you click on a member of a team you get forwarded to the configuration page of ...
- Session not found. Please run appwrite l...
I have encounter an issue with appwrite CLI They asking for a login session but in the doc, it’s mention that only setup client with endpoint / api key is enou...