我正在尝试使用以下代码从互联网获取一些数据:
HttpClient client = new HttpClient();
string URL = "http://server/test/userauth?operation=loginAuth&userName=" +
strEncryptedUsername + "&password=" + strEncryptedPassword
HttpResponseMessage response = await client.GetAsync(URL);
response.EnsureSuccessStatusCode();
获取代理“需要 407 授权”错误。请帮忙。这是一个 Windows 商店应用程序。