客户端----->代理(需要身份验证)-----> target_server(需要身份验证)
我使用apache的HttpClient作为客户端。目前,我不知道如何在target_server上传递身份验证。
const request = require('supertest');
module.exports = function givens() {
this.Given(/^then system is active$/, function (callback) {
this.request = request.agent('http://localhost:8787');
callback();
});
}
}
它返回连接重置错误。