Hi,
oidc-client uses “got” module to make post and get requests to the okta URL. I faced a scenario when the okta URL timed out, and oidc-client is not handling it properly.
https.js:
module.exports.post = function post(url, options) {
return got.post(url, options);
};
Can we introduce a handler in case of the url time out? This has become a serious problem in production.