0

次のコードを使用して、インターネットからデータを取得しようとしています:

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 ストア アプリです。

4

1 に答える 1