Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTTP2 with proxy doesn't work? (http2-wrapper) #2348

Open
wildwind3325 opened this issue Apr 11, 2024 · 0 comments
Open

HTTP2 with proxy doesn't work? (http2-wrapper) #2348

wildwind3325 opened this issue Apr 11, 2024 · 0 comments

Comments

@wildwind3325
Copy link

`
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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant