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
How can I setup socks5 proxy for client requests?
The text was updated successfully, but these errors were encountered:
I don't think there's a built-in way to use a socks proxy, but using a new guzzle client with your proxy specified should work:
<?php $client = new Tumblr\API\Client( '...key...', '...secret...' ); $rh = $client->getRequestHandler(); $rh->client = new \GuzzleHttp\Client(array( 'allow_redirects' => false, 'proxy' => 'socks5://localhost:8080', )); // now use $client as normal
Sorry, something went wrong.
No branches or pull requests
How can I setup socks5 proxy for client requests?
The text was updated successfully, but these errors were encountered: