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()
}

Warning: Plaintext credentials transmit data without encryption. Do not use in production for sensitive data or over untrusted networks.

See also

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard

Combines client credentials with call credentials.

Link copied to clipboard

Combines client credentials with call credentials.