`
var http2 = require('http2-wrapper');
(async () => {
let { got } = await import('got');
let url = 'https://whatever.com';
let result = await got.get(url, {
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0'
},
maxRedirects: 0,
retry: {
limit: 0
},
request: http2.auto,
http2: true,
agent: {
http2: new http2.proxies.Http2OverHttp({
proxyOptions: {
url: 'http://127.0.0.1:10809',
rejectUnauthorized: false
}
})
}
}).json();
console.log(result);
})();
`
The http2 agent doesn't work, proxy log is empty, I'm using v2ray as proxy server, it supports both http and socks.
Pay now to fund the work behind this issue.
Get updates on progress being made.
Maintainer is rewarded once the issue is completed.
You're funding impactful open source efforts
You want to contribute to this effort
You want to get funding like this too