express-http-proxy icon indicating copy to clipboard operation
express-http-proxy copied to clipboard

A quick question

Open NeuronButter opened this issue 5 years ago • 0 comments

Hi there! I'm trying to see if you can use the proxy to forward it to YouTube.com, but nothing appears to be loading. Here's my current code:

app.use('/proxy', proxy('https://www.youtube.com/watch?v=6H_9l9N3IXU', {
    https: true,
    userResHeaderDecorator(headers, userReq, userRes, proxyReq, proxyRes) {
      // recieves an Object of headers, returns an Object of headers.
      return headers;
    }
  }));

All that appears is this image Is there a specific header that YouTube looks for that knows that it's being given through a proxy? Thanks

NeuronButter avatar Jan 08 '20 05:01 NeuronButter