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
- Realtime: Listener not triggered on upda...
I self host appwrite 1.8.1. The genereal functionallity works fine. But my realtime subscription isn't updating. I see "Received heartbeat response from realtim...
- Impossible to get USER after createEmail...
Am using provider to deal with functions linked to appwrite. Here is my login. Future<String?> login(String email, String password) async { try { aw...
- Weird permission failure
when creating an account I use following methods: ``` Future<void> register(String email, String password, String username) async { final user = await accoun...