Hi,
In my electron app, I’m allowing to perform a login with Azure user by typing its email and then proceeding to Azure authentication by using SAML.
The problem is that on the Azure Sign-in page, I need to enter the email once again.
How can I pass the email so that there won’t be a need to re-enter it once again?
Thanks ahead.
Hi Daniel,
Could you try adding the connection name directly to the authorize request in your electron app, to see if it helps in the avoidance of having to re-enter the email.
Thanks,
Electron goes to https://my-portal.stage.net/authorize?client_id.........&login_hint=daniel-test%40infoazuremy-portal-stage.onmicrosoft.com which is Auth0, then Auth0 redirects to https://login.microsoftonline.com/600f6ee2-….” but without the &login_hint query param.
Any idea how can I make so that the &login_hint query param will be appended to the redirected url?