错误:SecureChannelFailure(身份验证或解密失败。)

时间:2018-05-07 08:36:41

标签: c# ssl mono tls1.2 xamarin.mac

我正在尝试在Https端点上使用httpWebRequest发出POST请求但是这给了我一个例外:

System.Net.WebException "SecureChannelFailure (The authentication or decryption has failed.)"

Xamarin Mac项目的目标框架是:Mono/.Net 4.5

Mono Framework:4.8.1

这是myh代码段:

using (var streamWriter = new StreamWriter(httpWebRequest.GetRequestStream())) // i'm getting exception on this line.
{
string json = jsonWhere;
streamWriter.Write(json);
}

我的应用程序在1天前工作正常,我没有做任何更改,但现在我收到此错误。

0 个答案:

没有答案