Hello,
I’m trying to start a password reset flow using a one time ticket:
const r = await client.tickets.changePassword({
user_id: event.user.user_id,
client_id: CLIENT_ID,
});
We use Universal Login from long time, and I know that I can specify a login URI to be called, at application Level and at tenant level.
The problem is that even if I specify the login URI at application level, when I ask for a password reset using e-mail I get the same redirect uri.
The flow triggered by the code above should be different from the one triggered by the e-mail.
The first one should have redirect uri, the second one doesn’t need it.
Do you have any suggestion?
Thanks