The requested security protocol is not supported. 解决办法
public static void Init()
{
#if NETSTANDARD || NET5_0_OR_GREATER
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
#else
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3
| SecurityProtocolType.Tls
| SecurityProtocolType.Tls11
| SecurityProtocolType.Tls12;
#endif
ServicePointManager.ServerCertificateValidationCallback = (a, b, c, d) => { return true; };
ServicePointManager.CheckCertificateRevocationList = true;
ServicePointManager.DefaultConnectionLimit = 1000;
ServicePointManager.Expect100Continue = false;
}