
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
- I have an error oauth with Microsoft
invalid_request: The provided value for the input parameter 'redirect_uri' is not valid. The expected value is a URI which matches a redirect URI registered for...
- how many Teams can be created?
I am creating an app where I will let users create groups. This could mean there will be many groups created by user, to isolate those groups properly I am thin...
- React native app login via Safari
Hi! I deployed for debug my React Native app in web, chrome everythink works well but in safari on mac and ios I cant login. I found this one error in safari co...
