I added auth0 login for my python web app as described in the example with auth0.authorize_redirect(redirect_uri=AUTH0_CALLBACK_URL, audience=AUTH0_AUDIENCE)
However, my customer want also a sign-up button directly beside the login button. How do I need to call the signup function with auth0.authorize_redirect(redirect_uri=AUTH0_CALLBACK_URL, audience=AUTH0_AUDIENCE)?
Could not find any documentation in the python example.
just took an additional look on the provided links and started a new test, but everything is still the same, authorize_redirect does not work with screen_hint=signup. Also tested action=signup, but this also does not work.
In both cases the following message is returned from authorize_redirect:
{
âmessageâ: âname âsignupâ is not definedâ
}