C# HttpClient 带证书https 请求
Posted China soft
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# HttpClient 带证书https 请求相关的知识,希望对你有一定的参考价值。
https://blog.csdn.net/mgy_2601907/article/details/100988387
//导入证书
WebRequestHandler handler = new WebRequestHandler();
string certificateFileName = 此处为存储证书的路径//Config.Read("certificateFileName");
//根据指定证书文件创建证书
X509Certificate x509Certificate = X509Certificate.CreateFromCertFile(certificateFileName);
handler.ClientCertificates.Add(x509Certificate);
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
PS:在创建HttpClient之前加入此段代码即可
————————————————
版权声明:本文为CSDN博主「陌人青丝」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/mgy_2601907/article/details/100988387
以上是关于C# HttpClient 带证书https 请求的主要内容,如果未能解决你的问题,请参考以下文章
关于httpclient 请求https (如何绕过证书验证)
用java做一个httpClient 发送https 的get请求,需要证书验证的那种,求大神指点一下!