titanium-web-proxy icon indicating copy to clipboard operation
titanium-web-proxy copied to clipboard

Support NTLM / Kerberos in upstream proxy authentication

Open rnd2822 opened this issue 6 years ago • 3 comments

As the title says. I have a upstream proxy which requires NTLM authentication and unfortunately Titanium cannot be used with it.

rnd2822 avatar Sep 19 '19 07:09 rnd2822

+1

fdellabetta avatar Sep 26 '19 13:09 fdellabetta

Anybody can help?:)

honfika avatar Dec 24 '19 14:12 honfika

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

mungojam avatar Apr 18 '20 10:04 mungojam