.netcore grpc The SSL connection could not be established,

添加允许不授信的证书或者无效的证书

 // 1、建立连接
var httpClientHandler = new HttpClientHandler();
// Return `true` to allow certificates that are untrusted/invalid
httpClientHandler.ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator;
var httpClient = new HttpClient(httpClientHandler);


using var channel2 = GrpcChannel.ForAddress("https://localhost:8711", new GrpcChannelOptions { HttpClient = httpClient });
var client2 = new Address.AddressClient(channel2);
var reply2 = await client2.TestMethodAsync(
new AddressRequest { Address = "GreeterClient" });
上一篇:word转换成HTML 以及IE不兼容问题


下一篇:记录weiye项目上线遇到的一些问题