I am trying to create a simple shiny app that is connected to the Auth0 password system using the Auth0 library. Currently, I am just trying to run locally. I get an Auth0 page that says 'there could be a misconfiguration in the system or a service outage' when I try to run, but I can't figure out why. I took the following steps:
- library(Auth0) in app
- shinyServerAuth0(...) in app
- created a Auth0 'regular web application' project
- copied the Auth0 project secret, name, and username, and set it to variables in .Renviron
- added the URLS 'http://localhost:8080, https://[redacted].shinyapps.io/' to the Callback, Logout, and Web Origin settings.
- Saved/refreshed everything.
Any thoughts?
I was also facing the same problem and getting the same error again and again whenever I tried to log in through it. But, now I find the solution and it works for me. Solution:
Currently, auth0 has changed their way to write the 'clientID' and 'domain' names, etc. Earlier, they were writing in the following way:
But, now things have changed now, and follow this below pattern to write the configuration of auth0:
I hope this will work for everyone. Thanks