WordPress / Requests

Requests for PHP is a humble HTTP request library. It simplifies how you interact with other sites and takes away all your worries.
https://requests.ryanmccue.info/
Other
3.57k stars 499 forks source link

Add SOCKS proxy support #96

Open rmccue opened 10 years ago

rmccue commented 10 years ago

SOCKS proxies are not currently supported.

It looks like there's a couple of issues with this though:

  1. Testing will be a pain. We can handle this like the HTTP proxy support, by worrying about that later.
  2. Sockets doesn't support SOCKS natively, so we'll have to write our own handling for this (see HTTP_Request2's adapter for reference)

(Split from #95)

ghost commented 10 years ago

This can be done easily. Check this out #109