You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RequestError: The "options.agent" property must be one of type http2wrapper.Agent-like Object, undefined or false. Received object
This indicates that the return value of http2Wrapper.proxies.HttpOverHttp2 is not http2wrapper.Agent like.
But the original post of http2-wrapper agent is confusing, and there is not an argument can pass in something like 'url', for the end-point of the proxy server.
`
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.
The text was updated successfully, but these errors were encountered: