I’m currently using the auth0 python api for password less login, I start the process as follows, however I keep getting an error when redirected:
error=invalid_request
error_description=no connections enabled for the client.
What am I doing wrong?
If I add a database connection I get rerouted to a lock page for login which is not what I want.
from auth0.v3.authentication import Passwordless
password_less = Passwordless(domain)
password_less.email(client_id, email,
auth_params={"redirect_uri":"http://localhost:3000/onboarding"})