Proxy authentication required (http error 407) with WinHttpRequest and proxy with integrated Windows authentication and https
问题 I'm trying to access an external website from my company network using WinHttpRequest from VBA. The company has a proxy server that requires integrated Windows authentication. The following code works if I try to access a URL with plain http, but I get http status code 407 - proxy authentication required if I try to access a URL with https. What do I need to do to make the code work with https? Sub a() Dim w As New WinHttp.WinHttpRequest 'set proxy w.SetProxy 2, "myproxy:8080" 'use integrated