pythongssapi / requests-gssapi

An authentication handler for using GSSAPI with Python Requests. Drop-in replacement for old requests-kerberos.
Other
32 stars 21 forks source link

Proxy support #35

Open christophvw opened 3 years ago

christophvw commented 3 years ago

As it looks like that requests-kerberos is dead it might be a good idea to adapt this patch to get proxy support here: https://github.com/requests/requests-kerberos/issues/148

When installing requests-gssapi I noticed the following: Requirement already satisfied: urllib3!=1.25.0,!=1.25.1,<1.26,>=1.21.1

To get proper proxy support urlib3 >= 1.26 will be required.

christophvw commented 3 years ago

https://github.com/pythongssapi/requests-gssapi/pull/36

frozencemetery commented 3 years ago

Note that requests-gssapi doesn't currently have a dependency on urllib3 directly. If it's important we could add one.

christophvw commented 3 years ago

It looks like my patch works with http only, https failed in my tests. :/