0

I am trying to send an http request to this endpoint using the request library from npm, however, how would I send that payload as shown in the screenshot?

enter image description here

eyllanesc
  • 235,170
  • 19
  • 170
  • 241

1 Answers1

0

If you have a client that uses grpc-web and a Node server that uses one of the Node gRPC libraries, those use different protocols so you will need to use a proxy to translate between them. For example, this grpc-web documentation page describes how to configure an Envoy proxy for that purpose.

murgatroid99
  • 19,007
  • 10
  • 60
  • 95