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
May I ask how to set the proxy in version 2.19
The text was updated successfully, but these errors were encountered:
If you can set environment variables, ALL_PROXY should still work as described in #871 (comment).
ALL_PROXY
If not, you will need to modify the code as follows:
--- a/src/helpers/WebClient.php +++ b/src/helpers/WebClient.php @@ -62,6 +62,7 @@ class WebClient { ], 'handler' => $stack, 'timeout' => 60, // seconds + 'proxy' => 'http://user:password@proxy:8000', ]); $this->httpClient = $httpClient;
See Guzzle docs for more details on the option.
Sorry, something went wrong.
No branches or pull requests
May I ask how to set the proxy in version 2.19
The text was updated successfully, but these errors were encountered: