0

我如何对 HTTPS URL Windows 8 Store App 使用基本的 http 身份验证。我正在使用 Visual Studio 2012、C# 和 XAML。

当我使用 HTTPS URL 时有什么需要注意的地方吗?

我尝试了以下这些方法:

#1 : ###Code 已更新 - 最终运行解决方案

        private async void HttpClientCall(object sender, RoutedEventArgs e)
    {

        System.Diagnostics.Debug.WriteLine(this.GetType().Name + ": HTTPCLientCall entered");

        //System.Diagnostics.Debug.WriteLine("NetworkConnectivityLevel.InternetAccess: " + NetworkConnectivityLevel.InternetAccess);

        //use this, for checking the network connectivity
        System.Diagnostics.Debug.WriteLine("GetIsNetworkAvailable: " + System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable());

        //var msg = new Windows.UI.Popups.MessageDialog("GetIsNetworkAvailable: " + System.Net.NetworkInformation.NetworkInterface.GetIsNetworkAvailable());
        //msg.ShowAsync();


        HttpClient httpClient = new HttpClient();


        // Assign the authentication headers
        httpClient.DefaultRequestHeaders.Authorization = CreateBasicHeader("username", "password");
        System.Diagnostics.Debug.WriteLine("httpClient.DefaultRequestHeaders.Authorization: " + httpClient.DefaultRequestHeaders.Authorization);


        // Call out to the site
        HttpResponseMessage response = await httpClient.GetAsync("https://URLHere");
        System.Diagnostics.Debug.WriteLine("response: " + response);
        string responseAsString = await response.Content.ReadAsStringAsync();
        System.Diagnostics.Debug.WriteLine("response string:" + responseAsString);

        //WebViewP.Source = new Uri("https://URLHere");
    }




    public AuthenticationHeaderValue CreateBasicHeader(string username, string password)
    {
        byte[] byteArray = System.Text.Encoding.UTF8.GetBytes(username + ":" + password);

        String logindata = (username + ":" + password);
        System.Diagnostics.Debug.WriteLine("AuthenticationHeaderValue: " + new AuthenticationHeaderValue("Basic", Convert.ToBase64String(byteArray)));

        return new AuthenticationHeaderValue("Basic", Convert.ToBase64String(byteArray));
    }

我只想显示一个需要身份验证的 HTTPS 网站。我收到来自 Visual Studio 的警告并且它停止工作:发送请求时发生错误。

'在 mscorlib.dll 中发生'System.Net.Http.HttpRequestException' 类型的第一次机会异常'

4

1 回答 1

1

您有一种更简单的方法来执行基本身份验证。

  • 首先创建一个HttpClientHandler实例。
  • 您可以根据需要设置HttpClientHandler 实例的Credentials属性。
  • 使用接受 HttpMessageHandler 实例的构造函数初始化您的 HttpClient 。
于 2013-10-22T11:36:41.740 回答