c# – Xamarin中的WebException,使用HttpClient

我正在学习如何在C#中使用xamarin,并且我有一个 Android应用程序来向外部API发出Web请求,并且我收到以下错误;
System.Net.Http.HttpRequestException: An error occurred while sending the 
request ---> System.Net.WebException: Error: SecureChannelFailure (The   
authentication or decryption has Failed.) ---> System.IO.IOException: The 
authentication or decryption has Failed. ---> System.IO.IOException: The 
authentication or decryption has Failed. ---> 
Mono.Security.Protocol.Tls.TlsException: The authentication or decryption has Failed.

我的代码如下;

public async Task<List<T>> GetList<T>(string url)
    {
        HttpClient client = new HttpClient();
        var response = await client.GetAsync(new Uri(url));
        response.EnsureSuccessstatusCode();
        var content = await response.Content.ReadAsstringAsync();
        return JsonConvert.DeserializeObject<List<T>>(content);
    }

android中的MainClass调用核心类,它调用此服务类.

当API不使用HTTPS时,HttpClient请求会起作用,但每当我使用启用了HTTPS的API时,都会抛出此错误.

我也使用可移植类库来存储代码,因此无法使用HttpWebRequest进行Web请求.

我也尝试过;

ServicePointManager.ServerCertificateValidationCallback += (o,certificate,chain,errors) => true;

和;

System.Security.Cryptography.AesCryptoServiceProvider b = new System.Security.Cryptography.AesCryptoServiceProvider();

在我的应用程序OnCreate类(android)中.

我还将HttpClient实现更改为AndroidClientHandler,同时将SSL / TLS实现更改为1.1.在模拟器和设备上尝试此操作.

有人有建议吗?

解决方法

试试这个:
打开Android项目属性 – > Android选项 – >高级

将HttpClient实现设置从Default切换到Android

似乎认的Mono客户端处理程序因HTTPS而中断.

相关文章

原文地址:http://msdn.microsoft.com/en-us/magazine/cc163...
前言 随着近些年微服务的流行,有越来越多的开发者和团队所采...
最近因为比较忙,好久没有写博客了,这篇主要给大家分享一下...
在多核CPU在今天和不久的将来,计算机将拥有更多的内核,Mic...
c语言输入成绩怎么判断等级
字符型数据在内存中的存储形式是什么