我正在学习如何在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。在模拟器和设备上尝试此操作。
有人有任何建议吗?
答案 0 :(得分:12)
试试这个: 打开Android项目属性 - &gt; Android选项 - &gt;先进
将 HttpClient实施设置从默认切换为 Android
似乎默认的Mono客户端处理程序因HTTPS而中断。