.Net Core 3.0 支持GRPC的远程调用方式,在客户端调用服务端时可能会报The SSL connection could not be established, see inner exception.其中InnerError为:The remote certificateisinvalid according to the validation procedure.明确提示远端证书无效。目前有两种解决办法:
1、在VS每次提示是否信任证书,点击“是”(如果已经点击过“否”,并勾选了不在提示,那么我们可以使用:dotnet dev-certs https --trust命令)
2、在客户端忽略掉证书
忽略证书
网友评论