Ready to post? First, try searching for your answer.
Hello,
I am trying to have the email address prefilled on the universal login page.
I am using auth0-react, version: 2.2.4
and the Universal Login. The connections are only google and email. I have tried both options as per the other topics here, but non of them worked:
const token = await getAccessTokenSilently({
authorizationParams: {
login_hint: "user@example.com"
}
});
and
const token = loginWithRedirect({
authorizationParams: {
login_hint: "user@example.com"
}
});
I see that the documentation for the login_hint parameter says:
* This currently only affects the classic Lock experience.
I hope this is not the case.
I am also using passkeys as an authentication method and hence cannot enable Custom Login Page. Thanks in advance!