We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently gaxios not support https_proxy environment variable like socks5://127.0.0.1:8080. I did a litte hack on the code, just change the file https://github.com/googleapis/gaxios/blob/v2.2.0/src/gaxios.ts#L60
https_proxy
socks5://127.0.0.1:8080
HttpsProxyAgent = require('https-proxy-agent');
to
HttpsProxyAgent = require('proxy-agent');
Then it work fine.
proxy-agent also write by the https-proxy-agent author.
The text was updated successfully, but these errors were encountered:
thanks for the suggestion @muzuiget 👍
Sorry, something went wrong.
Related:
proxy
If we migrate to fetch this may be an upstream blocker:
fetch
No branches or pull requests
Currently gaxios not support
https_proxy
environment variable likesocks5://127.0.0.1:8080
. I did a litte hack on the code, just change the file https://github.com/googleapis/gaxios/blob/v2.2.0/src/gaxios.ts#L60to
Then it work fine.
proxy-agent also write by the https-proxy-agent author.
The text was updated successfully, but these errors were encountered: