Does Aiohttp Support Https Proxies
When I try to make a request through an HTTPS proxy- async with session.get( url headers={'k': v}, proxy='https://my-proxy.com:1234', ) as response: resp_json = awa
Solution 1:
I opened an issue in the repo and Andrew Svetlov was kind enough to clarify. aiohttp
supports plain HTTP clients and HTTP clients that can be upgraded to HTTPS via HTTP CONNECT. I made a pull request to update the docs.
Post a Comment for "Does Aiohttp Support Https Proxies"