0


HttpClient未能为 SSL/TLS 安全通道建立信任关系,忽略SSL验证

目录

.NET Core参考代码,推荐;

//忽略SSL证书验证var handler =newHttpClientHandler();
handler.ServerCertificateCustomValidationCallback =delegate{returntrue;};HttpClient httpClient =newHttpClient(handler);

.NET Framework参考代码

//忽略 SSL/TLS 证书验证。
     httpClient.DefaultRequestHeaders.ExpectContinue =false;
     ServicePointManager.ServerCertificateValidationCallback =delegate{returntrue;};

参考
https://www.cnblogs.com/RaymonGoGo/p/16705733.html

标签: ssl 安全 c#

本文转载自: https://blog.csdn.net/u011511086/article/details/135155067
版权归原作者 王焜棟琦 所有, 如有侵权,请联系我们删除。

“HttpClient未能为 SSL/TLS 安全通道建立信任关系,忽略SSL验证”的评论:

还没有评论