Thank you for reaching out about this issue and my apologies for the late reply.
After looking into your tenant, I noticed that you selected the New Universal Login Experience but also toggled on the Customize Login Page setting. When this setting is enabled, it will override the New Universal Login Experience with the Classic Universal Login Experience.
If you prefer to directly send your users to the signup page using the screen_hint=signup query parameter, you must make sure that you are using the New Univeral Login experience, which includes turning off the Customize Login page toggle.
I hope this helps!
Please let me know if I can help with anything else.
Thanks, the hint signup does the trick, but the “state” value now needs to be dealt with explicitly. What event can I map to in c# to take care of this? Otherwise, invalid state error is shown although all the user bits did work and you can then login successfully.
Here’s a tip that Auth0 doesn’t appear to mention in their docs: Your client application must not be associated with more than one authentication database.
I could not get a link that would redirect to the signup page until I turned the client app off on every database but one.
Thanks Reuben. I did discover that specifying a db connection in the authorize params allowed the signup redirect to work.
What seems to be the case is that if the client is associated to one db, then not specifying the connection allows redirect to signup with the option to sign in via Social connection. But if you specify the db connection then Social is not an option.
So that means, for redirect to signup to work, the client must be associated with no more than one db connection, or redirect to signup cannot include other connection types.
That’s correct. If you specify a DB connection in your login request, then that would be the only connection the user is allowed to authenticate against. This means that Social connection options are not available.
Conversely, if you omit the connection parameter in the login request and have more than 1 connection enabled for the client, then it will present all connection types available for them to choose to login.