Hi @olkr,
Welcome to the Auth0 Community!
I understand that your end-users have errors logging in, specifically with the “Missing required parameter: response_type” error.
This error is indicating that the authorize request URL does not have the response_type
parameter, which is required.
For example:
https://YOUR_DOMAIN/authorize?
response_type=code&
client_id=YOUR_CLIENT_ID&
redirect_uri=https://YOUR_APP/callback&
scope=SCOPE&
audience=API_AUDIENCE&
state=STATE
In this case, you will need to make sure that authorize request includes the response_type
parameter. After doing so, your users will be able to log in without issues.
Please let me know how it goes for you.
Thank you.