Search code examples
auth0

Failed silent auth - Login required Auth0


I am trying to implement login with Auth0 and looking at Dashboard -> Monitoring -> Logs, I can see that login is failing because it says Failed silent auth - Login required.

What is the solution to fix failed logins?


Solution

  • Remove prompt: 'none' from the authParams you send.

    In my case, I was using passwordless login with magic links and I was sending prompt: 'none' in the authParams of the body of the request to fetch auth0.com/passwordless/start.

    I removed prompt: 'none' from the authParams and everything was good.