How do users connect to SocksProxyEndPoint must authenticate username and password.
I have read that in the latest version of Titanium web proxy which allows to enable username password authentication when creating a SocksProxyEndPoint. But I don't know how to write that code and also can't find illustrative example, can someone help me do this
For basic authentication, just set the
ProxyBasicAuthenticateFuncproperty on theProxyServerinstance. For example:Note that the data will be sent in plain text (no encryption). It could be acceptable in intranets, but if you allow public access to your proxy, either use a different authentication scheme (ProxySchemeAuthenticateFunc) or tunnel the traffic.