When I try to check the body using the Fiddler Proxy on a particular website, I can find the body value in fiddler session list. But when I try to check body on Fiddler Script, the body value is checked as "".
I checked the session list that the body value is more than 260000 characters, but the Fiddler Script confirms it as 0 characters.
Here is example
This code contained in onBeforeResponse
```
var oBody = System.Text.Encoding.UTF8.GetString(oSession.responseBodyBytes);
```
And here is the url of that particular website.
I've using fiddler more than 1 years, but this is the first case of this phenomenon. I'd appreciate it if you could tell me how to do it
For a task like this, you want to use GetResponseBodyAsString, which will remove compression and chunking and ensure that the right character encoding is used vs. expecting UTF-8.