Rank 2: Process
Hello!
I am currently in the process of implementing password recovery. I am using Flutter.
This is my code to send the recovery email in first place:
await _account.createRecovery( email: email, url: 'http://localhost:5000/#/password-recovery');However, there is a problem with it. When the mail was sent (I already set up smtp etc.), the url with the query paramters (userId and secret) looks like this:
http://localhost:5000/?userId=[userId]&secret=[secret]&expire=[expire]#/password-recovery
Notice, that the query paramters are not after the password-recovery, but directly after the "main" url. Before I even implemented password recovery (confirmation), I had this url just as an example:
http://localhost:8080/v1/account/recovery
The URL that I got in the mail looked like this:
http://localhost:8080/v1/account/recovery?userId=[userId]&secret=[secret]&expire=[expire]
Notice, that the query paramters are at the right place when using this url.
Anyone knows, what the issue could be?

