Skip to content
This repository has been archived by the owner on Aug 28, 2023. It is now read-only.
Sijun Liu edited this page Jan 3, 2018 · 5 revisions

Trouble shooting

Please turn on the logging as follows.

passport.use(new OIDCStrategy({
    ...
    loggingLevel: 'info'    // <==== set loggingLevel to 'info', you will see the logging messages in node console.
  }, function(...) {
  }
}

If authentication fails for any reason, look for "authentication failed due to:" in the logs, it will tell us the problem.

Clone this wiki locally