我正在尝试在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天前工作正常,我没有做任何更改,但现在我收到此错误。