HttpClient and using proxy - constantly getting 407

前端 未结 3 1395
醉话见心
醉话见心 2020-11-28 23:00

Here is the code:

 HttpClient client = null;
 HttpClientHandler httpClientHandler = new HttpClientHandler()
 {
    Proxy = new WebProxy(string.Format(\"{0}:{         


        
相关标签:
3条回答
  • You need to pass a proxy Handler. try this it worked for me

    var handler = new HttpClientHandler();
    handler.DefaultProxyCredentials = CredentialCache.DefaultCredentials;
    
    var client = new HttpClient(handler);
    
    HttpResponseMessage response = await client.SendAsync();
    
    0 讨论(0)
  • 2020-11-28 23:24

    You're setting the proxy credentials in the wrong place.

    httpClientHandler.Credentials are the credentials you give to the server after the proxy has already established a connection. If you get these wrong, you'll probably get a 401 or 403 response.

    You need to set the credentials given to the proxy, or it will refuse to connect you to the server in the first place. The credentials you provide to the proxy may be different from the ones you provide to the server. If you get these wrong, you'll get a 407 response. You're getting a 407 because you never set these at all.

    // First create a proxy object
    var proxy = new WebProxy
    {
        Address = new Uri($"http://{proxyHost}:{proxyPort}"),
        BypassProxyOnLocal = false,
        UseDefaultCredentials = false,
    
        // *** These creds are given to the proxy server, not the web server ***
        Credentials = new NetworkCredential(
            userName: proxyUserName,
            password: proxyPassword)
    };
    
    // Now create a client handler which uses that proxy
    var httpClientHandler = new HttpClientHandler
    {
        Proxy = proxy,
    };
    
    // Omit this part if you don't need to authenticate with the web server:
    if (needServerAuthentication)
    {
        httpClientHandler.PreAuthenticate = true;
        httpClientHandler.UseDefaultCredentials = false;
    
        // *** These creds are given to the web server, not the proxy server ***
        httpClientHandler.Credentials = new NetworkCredential(
            userName: serverUserName,
            password: serverPassword);
    }
    
    // Finally, create the HTTP client object
    var client = new HttpClient(handler: httpClientHandler, disposeHandler: true);
    
    0 讨论(0)
  • 2020-11-28 23:30

    I found some useful information about this here from social.msdn.microsoft.com. From the replies, tests I made and research into the System.Net.WebProxy Class you need to pass the proxy credentials into the proxy object, not the HttpClientHandler.

    {
        Proxy = new WebProxy(string.Format("{0}:{1}", proxyServerSettings.Address, 
        proxyServerSettings.Port),false),
        PreAuthenticate = true,
        UseDefaultCredentials = false,
        Credentials = new System.Net.NetworkCredential(proxyServerSettings.UserName, 
                        proxyServerSettings.Password),
    };
    

    This actually is meant to authenticate the connection to the proxy, not the HttpClientHandler.

    0 讨论(0)
提交回复
热议问题