Is there a way to decode gRPC response into JSON?

Viewed 281

I am creating a chrome extension to debug all the gRPC calls in a good way. Until now I tried:

JSON.parse(body.toString())
atob(body)

But non of it is working.

So my question is: Is there a way to decode gRPC response into JSON?

0 Answers
Related