-
Notifications
You must be signed in to change notification settings - Fork 430
Suggest supporting proxy_rdns
setting while constructing Httplib2.Http in client.py
#172
Comments
A customer,
|
This is somewhat related to #128. In particular, "Determine what assumed interface of |
Thanks for reply! :) BTW, would you guys start to solve this issue by wrapping a configurable |
I'd like to implement a |
Got it. Looking forward to! :) |
Thank you for creating this issue, however, this project is deprecatedand we will only be addressing critical security issues. You can read moreabout this deprecation here. If you need support or help using this library, we recommend that you ask yourquestion on StackOverflow. If you still think this issue is relevant and should be addressed, pleasecomment and let us know! |
Such as class
OAuth2WebServerFlow
in client.py, when callstep*()
functions, it would constructHttplib2.Http
objects. If using proxy,Httplib2.Http
would use proxy from environment. However, if the proxy needs reverse DNS(rdns), all requests ofHttplib2.Http
are blocked and there're no methods to setproxy_rdns
toTrue
. The best way is to constructHttplib2.ProxyInfo
object which has all proxy settings includingproxy_rdns
. Then make this as a parameter to constructHttplib2.Http
.The text was updated successfully, but these errors were encountered: