这个概念很简单,创建一个将 websocket 请求转发到另一个端口的 http 服务器。
这是我服务器端的代码:
http.createServer(onRequest).listen(9999);
function onRequest(request, response) {
console.log(request);
...
}
因此,如果 http 服务器收到任何请求,它应该在控制台中打印出请求。
然后在客户端(也是一个 node.js 应用程序),代码是:
var HttpsProxyAgent = require('https-proxy-agent');
var WebSocket = require('ws');
...
var proxy = `http://${config.proxy.host}:${config.proxy.port}`;
var options = url.parse(proxy);
agent = new HttpsProxyAgent(options);
ws = new WebSocket(target, {
protocol: 'binary',
agent: agent
});
现在,当我使用 Charles 拦截请求时,客户端确实发出了请求,这是 Charles 捕获的 curl 表单:
curl -H '主机:target.host.com:8080' -X CONNECT ' https://target.host.com:8080 '
问题似乎是
function onRequest(request, response) {
console.log(request);
...
}
实际上没有收到任何-X CONNECT 'https://proxy.host.com:9999'
请求,或者至少它没有打印出来(显然它也没有工作)。