Improve error handling on openid-configuration request

This commit is contained in:
Rory Powell 2021-07-05 17:28:55 +01:00
parent 7803540399
commit 71ddd41877
1 changed files with 19 additions and 15 deletions

View File

@ -103,7 +103,11 @@ exports.strategyFactory = async function (callbackUrl) {
}
const response = await fetch(configurationUrl)
if (response.ok) {
if (!response.ok) {
throw new Error(`Unexpected response when fetching openid-configuration: ${response.statusText}`)
}
const body = await response.json()
return new OIDCStrategy(
@ -119,7 +123,7 @@ exports.strategyFactory = async function (callbackUrl) {
},
authenticate
)
}
} catch (err) {
console.error(err)
throw new Error("Error constructing OIDC authentication strategy", err)