Rank 2: Process
Hi there,
I am trying to create a mail confirmation mail with an SPA URL. The URL used as base URL contains a Hashtag: https://app.example.com/#/mailconfirmation
The confirmation mail is triggered from a flutter frontend.
The problem occurs, when the mail with the link with the userID and secret has the following link structure:
https://app.example.com/?userId=123&secret=abc123#/mailconfirmationThe expected link structure is:
https://app.example.com/#/mailconfirmation?userId=123&secret=abc123Is there something I am missing for SPA links?
My app is capable to process the expected link structure as expected, but the generated faulty link structure is obviously not usable.
The trigger function in Flutter is used in the following form:
void createVerification() async { String baseUrl = 'https://app.example.com/#/mailconfirmation'; var result = await _account.createVerification( url: baseUrl, ); }