With my Auth0 account I set up an Application with a mongoDB database. I followed the quickstart tutorial for Express.js and at the point where I was testing going to my /login endpoint (http://localhost:8080/login) I was getting an error at the /authorize endpoint due to a missing “?” at the end of the ‘redirect_uri’ in the URL.
The change I made that made it work:
redirect_uri?=http
I wanted to know why that question mark is missing in the url by default, and is there a config to make sure that it’s added in automatically?
Thanks for any help in advanced!