I use the Universal Login as a Signup page by adding screen_hint: 'signup'
parameter.
$link = "https://{AUTH0_DOMAIN}/authorize?scope=openid%20profile%20email&response_type=code&client_id={AUTH0_CLIENT_ID}&prompt=login&screen_hint=signup&redirect_uri={MY_APP_DOMAIN}/dashboard/"
MY_APP_DOMAIN/dashboard/
is set as the Application Login URI of my Machine to Machine Application.
Once a user signs up and is redirected to redirect_uri, I want them to be automatically logged in.
Is it possible?
I’ve thoroughly scoured the community and checked almost all posts related to this topic.
However, even with a massive amount of posts, I couldn’t reach a concrete conclusion.
This post has determined that having a login page and a redirect destination on different domains is problematic.
Does the login page
refer to Universal Login Page?
In that case, Do I need a custom domain to customize the domain of Universal Login Page?
I’ve spent countless hours on this problem and it’s really getting me down.
I would be very grateful for a clear explanation.