如何修改节点js响应

时间:2015-07-03 12:19:26

标签: node.js ntlm

我正在使用节点js作为使用NTLM身份验证的休息服务的代理。 我使用httpntlm模块绕过NTLM身份验证。该模块发出附加请求并返回响应。

如何将NTLM响应数据写入原始响应?

var httpntlm = require('httpntlm');
var request = require('request');

app.use(function (req, res, next) {
    httpntlm.post({
        url: url,
        username: username,
        password: password,
        workstation: '',
        domain: domain,
        json: req.body
    }, function (err, ntlmRes) {

        // console.log(ntlmRes.statusCode);
        // console.log(ntlmRes.body);

        res.body = ntlmRes.body;
        res.status = ntlmRes.statusCode;

        next();
        // req.pipe(res);
    });
});

1 个答案:

答案 0 :(得分:1)

在您提供的示例代码中,使用了Express.js中间件,但只是简单地调用next()切换到下一个中​​间件,并且不输出任何内容。而不是我们必须将响应发送回客户端。

var httpntlm = require('httpntlm');

app.use(function (req, res, next) {
    httpntlm.post({
        url: url,
        username: username,
        password: password,
        workstation: '',
        domain: domain,
        json: req.body
    }, function (err, ntlmRes) {

        // Also handle the error call
        if (err) {
            return res.status(500).send("Problem with request call" + err.message);
        }

        res.status(ntlmRes.statusCode) // Status code first
           .send(ntmlRes.body);        // Body data
    });
});