Hi,
I am customising my fiddler script and was hoping to get the response body as a base64 string, is this possible?
I tried the following:
var bytes = Encoding.UTF8.GetBytes(oSession.GetResponseBodyAsString());
var base64 = Convert.ToBase64String(bytes);
FiddlerObject.log(base64);
However this did not work. I am probably missing something really obvious.
The response body is a PNG.
Many thanks
Pete