Make https work on gRPC in Rust: load a root certificate into the TLS config
Why is this so hard? To send gRPC messages in Rust, one uses the tonic library. If you’re sending to an https endpoint, you’ll need to provide a ClientTlsConfig. By default, you’ll get a very distrustful one. Here’s the error message: the grpc server returns error (The service is currently unavailable): , detailed error message: …
Read moreMake https work on gRPC in Rust: load a root certificate into the TLS config