I want to communicate via TLS using grpc-js but I don't know how to configure the lib.
I have tried to call my endpoint but it gives med error code 14 as opposed to error code 16 when I call my endpoint using PostMan. Can you help me?
I want to communicate via TLS using grpc-js but I don't know how to configure the lib.
I have tried to call my endpoint but it gives med error code 14 as opposed to error code 16 when I call my endpoint using PostMan. Can you help me?
The second required argument of the
Client
andChannel
constructors is a credentials object. A secure credentials object can be created by callinggrpc.credentials.createSsl
. If called with no arguments, the resulting channel will accept certificates signed by the standard certificate authorities. For more advanced usage, see the API documentation.