Skip to content
New issue

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 to use proxy? #86

Open
themartianwatney opened this issue Aug 3, 2017 · 1 comment
Open

how to use proxy? #86

themartianwatney opened this issue Aug 3, 2017 · 1 comment

Comments

@themartianwatney
Copy link

How can I setup socks5 proxy for client requests?

@jasonpenny
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants