Hi,
I followed the python/flask tutorial step by step to implement auth0 login for my app.
But I am unable to get past the 404 err at this step for the server_metadata_url:
oauth.register(
“auth0”,
client_id=AUTH0_CLIENT_ID,
client_secret=AUTH0_CLIENT_SECRET,
client_kwargs={
“scope”: “openid profile email”,
},
server_metadata_url=f’https://{AUTH0_DOMAIN}/.well-known/openid-configuration’,"
)
AUTH0_DOMAIN is my dev domain
I also see Unknown host: AUTH0_DOMAIN in dev tool of the browser (but I get a successful ping AUTH0_DOMAIN)
What I am doing wrong…
thanks