
Hello everyone, I've had recovery password flow implemented for about over a year and I've tested it on both test and production projects. Recently one of my users messaged me that it doesn't work and indeed it does not - yet I haven't changed the implementation, nor anything on the dashboard related to it.
I'm getting 400 error code response with message ""Invalid url
param: Invalid URI. Register your new client (myClientName) as a new platform on your project console dashboard""
I'm basically calling
@override
Future<Token?> sendRecoveryEmail(String email) =>
_account.createRecovery(email: email, url: recoveryPageUrl);
The case is, I do have it created, I've also tried changing it to a wildcard (*) and it still does not seem to work, I've created a new web platform, basically tried everything and seems something has changed. Can anyone help me with the issue?

To elaborate, I have deeplinking and everything setup - the flow basically fails on sending the email step.
Recommended threads
- Changing password when logged using a OT...
I'm developping in flutter/dart, I'm using email token to login to an existing user: _sessionToken = await account.createEmailToken(userId: app.ID.unique(), ema...
- Simplest Appwrite + Riverpod + Go_router...
Hey, I managed to get native Google Sign-In working with Appwrite custom tokens and Riverpod/GoRouter, and I’m stuck on three things: --- ## 1) SDK user ident...
- Native Sign in with Google/Apple Flutter
Is native sign in with google / apple in Flutter possible with Appwrite?
