If I wanted to add a custom header to a gRPC request, can I do that?
For example, say I wanted to know which user is making the request, I'd like to add a header called "user" when making the client request. I might also want to add a header called "password" in case I wanted to authenticate them.
Can I add arbitrary headers like in HTTP/1 and can that be accomplished in the various gRPC apis (Java, C#, Node, etc).
TIA