-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Support proxy headers for CONNECT requests #1561
Comments
Looks like this is the part of the code I need to modify: I can even implement this in my own connector. |
seems you found solution |
Is there an official solution to this or is the suggested solution to just to create your own connector that extends TCPConnector and add support for it there? |
As workaround you could extend TCPConnector right now. |
Curl has been supporting this for a while (says here), and it is also possible with
requests
by overriding the proxy_headers() method of HTTPAdapter.How hard would it be to implement this in
aiohttp
?The text was updated successfully, but these errors were encountered: