Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Fiddler can easily decode responses - how to make this automatic?

Tags:

fiddler

In Fiddler I have many responses which I like to view raw. For each one Fiddler says "Response is encoded and may need to be decoded before inspection. Click here to transform."

I want not only the current one, but all responses to always be transformed. Anyone know how to set this? Rules->Remove all encodings does not do the trick.

like image 930
Daniel Williams Avatar asked Jun 07 '12 03:06

Daniel Williams


2 Answers

It's very easy, You just click "Decode" button in Fiddler toolbar

like image 20
Tank Xiao Avatar answered Oct 25 '22 12:10

Tank Xiao


If the goal is to remove compression during the processing of a session:

  1. That's what the "Decode" button on the toolbar does.
  2. That's also what Rules menu > "Remove all encodings" does.

Auto decode

If the goal is to remove the encoding after session processing is complete, select all of the sessions (CTRL+A) and use "Decode Selected Sessions" on the Web Sessions list's context menu.

like image 143
EricLaw Avatar answered Oct 25 '22 11:10

EricLaw