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 = await response.json()
My request fails with the following exception:
raise ValueError("Only http proxies are supported")
This corresponds to the source code .
However, the docs say that HTTPS proxies are supported.
Is this an oversight in the docs or am I doing this incorrectly?