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
Hello
any plans for Proxy support?
The text was updated successfully, but these errors were encountered:
Hello, There is no plan for implementing proxy support as of now.
I will leave this issue open if someone want to pick this up.
Sorry, something went wrong.
It is possible to specify a Client class with a proxy:
require __DIR__ . '/vendor/autoload.php'; use \Ovh\Api; use GuzzleHttp\Client; // Required $http_client = new Client([ 'timeout' => 30, 'connect_timeout' =>5, 'proxy' => 'tcp://a.b.c.d:3128' ]); $conn = new Api($application_key, $application_secret, $api_endpoint, $consumer_key, $http_client);
See API constructor and GuzzleHttp\Client Documentation for more information
No branches or pull requests
Hello
any plans for Proxy support?
The text was updated successfully, but these errors were encountered: