GrpcInsecureClientCredentials
Available in a dev version: 0․11․0-grpc-186
How to configure
Plaintext credentials with no transport security.
Use this credential type for unencrypted connections to gRPC servers. This should only be used in development or testing environments or when connecting to services within a secure network perimeter.
Example
val client = GrpcClient("localhost", 9090) {
credentials = plaintext()
}Content copied to clipboard
Warning: Plaintext credentials transmit data without encryption. Do not use in production for sensitive data or over untrusted networks.