We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The sample config file has
azure: clientID: .....`
But I get an error "OAuth2Strategy requires a clientID option" because server/libs/auth.js has:
server/libs/auth.js
passport.use('azure_ad_oauth2', new AzureAdOAuth2Strategy({ clientID: appconfig.auth.azure.clientId, clientSecret: appconfig.auth.azure.clientSecret,`
There is no appconfig.auth.azure.clientId, only a appconfig.auth.azure.clientID.
I can fill in the provided Azure sign-on config sample to use Azure sign-on.
Try to use the provided config.yml template for azure sign-on
Either server/libs/auth.js at line 190 can use appconfig.auth.azure.clientID or the sample config.yml file can replace clientID with clientId
appconfig.auth.azure.clientID
clientID
clientId
The text was updated successfully, but these errors were encountered:
Fixed in 101158f
Sorry, something went wrong.
NGPixel
No branches or pull requests
Actual behavior
The sample config file has
But I get an error "OAuth2Strategy requires a clientID option" because
server/libs/auth.js
has:There is no appconfig.auth.azure.clientId, only a appconfig.auth.azure.clientID.
Expected behavior
I can fill in the provided Azure sign-on config sample to use Azure sign-on.
Steps to reproduce the behavior
Try to use the provided config.yml template for azure sign-on
Steps to fix the error
Either
server/libs/auth.js
at line 190 can useappconfig.auth.azure.clientID
or the sample config.yml file can replaceclientID
withclientId
The text was updated successfully, but these errors were encountered: