最近做一个项目使用了http2,直接浏览器请求成功,但用fiddler发起请求的时候,返回了以下错误
——————
[Fiddler] The connection to 'localhost' failed. <br />System.Security.SecurityException Failed to negotiate HTTPS connection with server.fiddler.network.https> HTTPS handshake to localhost (for #381) failed. System.Security.Authentication.AuthenticationException 调用 SSPI 失败,请参见内部异常。 < 接收到的消息异常,或格式不正确。
Win32 (SChannel) Native Error Code: 0x80090326
——————
要修复它,请注意您的WebApi(fiddler)使用的是TLS的哪个版本。
用fiddler抓包浏览器的请求,发现TLS是1.2的
通过该正确的请求可知,所用的协议应该为TLS1.2
查看fiddler的请求配置(https请求所用协议)
Tools -> Options ->Https,发现没有添加TLS1.2(默认协议没有添加1.2)
————————————————
版权声明:本文为CSDN博主「Venlenter」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/asd051377305/article/details/87632059