我在使用http-auth模块创建基于 express 的 node.js 应用程序时遇到问题。
这是一个可能为这个http-auth库创建的中间件我有这个代码:
//Configure Middlewares
logger.configure(function() {
//All output has content type json
logger.use(function(req, res, next) {
res.contentType('application/json');
next();
});
//Create digest auth middleware
logger.use(function(req, res, next){
digest.apply();
next();
});
});
应用此功能后,当我连接到站点时,出现此错误:
TypeError: Cannot read property 'headers' of undefined
有没有解决这个问题或使用其他方法?
我需要对整个应用程序进行摘要身份验证。