titanium-web-proxy
titanium-web-proxy copied to clipboard
Support NTLM / Kerberos in upstream proxy authentication
As the title says. I have a upstream proxy which requires NTLM authentication and unfortunately Titanium cannot be used with it.
+1
Anybody can help?:)
the code to do it when using an HttpClient is this:
var handler = new HttpClientHandler();
handler.DefaultProxyCredentials = CredentialCache.DefaultCredentials;
var client = new HttpClient(handler);
However, I haven't checked the code in this library yet to see if that could be adapted for it