gRPC secure channel

Question
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
This should work already if you use
https://...for your URL. Can you try that and let me know if it works?Well it worked! Thank you! I’ve tried
grpc://grpcs://but haven’t thought that I can usehttps://. It will be good to have this somewhere in the docs.Good idea!