AdWordsClient.LoadFromStorage("/path/to/myfile")HTTPError: (407, 'Proxy Authentication Required')I believe the client will call the OAuth library and try and refresh the necessary tokens., but looking at the following code shows that proxy_user and proxy_pass are never sent to httplib2.ProxyInfo
# Proxy configurations (optional)
proxy_info:
host: username:password@myproxy.com
port: 1234
httplib2.ServerNotFoundError: Unable to find the server at accounts.google.comI believe httplib2 has specific settings for the proxy username and password which never get set in line 118 in the above link.
Any idea on when the fix might be introduced?
Thanks again!