Yaak Logo
Yaak
Feedback/gRPC secure channel

gRPC secure channel

Noki Nori·3 months ago
ResolvedQuestion

Hi! Mb I’m missing something, but I can’t find simple secure channel connection to gRPC server. Is it possible? Like in UI or somewhere? I don’t expect something complicated, but a simple SSL. Python code example:

    if use_secure:
        return grpc.secure_channel(
            endpoint,
            grpc.ssl_channel_credentials(),
        )
    return grpc.insecure_channel(endpoint)
macOS2026.1.2

Comments (3)

Sign in to leave a comment.

Gregory SchierNeeds Reproduction

This should work already if you use https://... for your URL. Can you try that and let me know if it works?

Noki NoriOP

Well it worked! Thank you! I’ve tried grpc:// grpcs:// but haven’t thought that I can use https://. It will be good to have this somewhere in the docs.

Gregory Schier

Good idea!

Type to search feedback...