gpt4 book ai didi

c# - 如何忽略 c# signalr 客户端中的 https 证书警告?

转载 作者:可可西里 更新时间:2023-11-01 09:03:53 28 4
gpt4 key购买 nike

我正在尝试使用无效证书连接到 SignalR 服务器。毫不奇怪,我收到以下错误:

    System.Net.Http.HttpRequestException : An error occurred while sending the request.
----> System.Net.WebException : The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.
----> System.Security.Authentication.AuthenticationException : The remote certificate is invalid according to the validation procedure.

使用普通的 .Net HttpClient,您可以使用具有 ServerCertificateValidationCallback 委托(delegate)的 WebRequestHandler 构造它,从而允许您更改证书验证行为。 SignalR HttpClient 似乎没有这些。

最佳答案

您应该为 ServerCertificateValidationCallback 事件注册一个方法。

此代码只是注册了一个匿名方法,该方法在触发事件时返回 true。

ServicePointManager.ServerCertificateValidationCallback +=
(sender, certificate, chain, sslPolicyErrors) => true;

请注意,这是全局设置。因此所有 ssl/tls 请求信号器或 http 将使用此设置。

关于c# - 如何忽略 c# signalr 客户端中的 https 证书警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35609141/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com