.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" });
留待后查,同时方便他人
联系我:renhanlinbsl@163.com
原文地址:https://www.cnblogs.com/ives/p/15098422.html