Windows应用商店应用代理​​问题

时间:2013-06-18 10:26:28

标签: windows-8

我正在尝试使用以下代码从互联网获取一些数据:

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商店应用程序。