@vivek@Kailash In the WebSocketApp class which is used by WebSocket class, there is a method run_forever whose signature is as follows: def run_forever(self, sockopt=None, sslopt=None, ping_interval=0, ping_timeout=None,http_proxy_host=None, http_proxy_port=None,http_no_proxy=None, http_proxy_auth=None,skip_utf8_validation=False,host=None, origin=None): If I specify http_proxy_host and http_proxy_port, it works, but since I have an authenticated proxy, how do I provide authorization details? It should be in the http_proxy_auth but I don't know the input format for the http_proxy_auth . Please help.
def run_forever(self, sockopt=None, sslopt=None, ping_interval=0, ping_timeout=None,http_proxy_host=None, http_proxy_port=None,http_no_proxy=None, http_proxy_auth=None,skip_utf8_validation=False,host=None, origin=None):
If I specify
http_proxy_host
andhttp_proxy_port
, it works, but since I have an authenticated proxy, how do I provide authorization details? It should be in thehttp_proxy_auth
but I don't know the input format for thehttp_proxy_auth
. Please help.