I use a HTTPS website in internet that JavaScript frameworks is vue.js
and the website send post request over grpc-web
.
When I'm trying to see request body on network tab in browser(Firefox or chrome), request body looks like this(non human readable):
\u0000\u0000\u0000\u0000B\n\u0014\rë\u0011B\u0015\...
I want to know what content is posted in the request payload?
Note: response content not need for me, I want just request payload.
I use
Fiddler Everywhere
App in trial mode and inspecting gRPC requests as shown as:Then I find the request body in hex decimal and I can convert hex decimal to any format (base64,binary, ...)
For more information click on this link.