fiddler HTTPMethod (GET/PUT/POST/DELETE...) Column

HttpFiddler

Http Problem Overview


Is there an easy way to add an HTTPMethod (GET/PUT/POST/DELETE...) column to the fiddler display?

Found these instructions on the fiddler wiki for adding session variables:

>cols add "Client IP Address" X-CLIENTIP

But HTTPMethod doesn't seem to be as easy.

Anybody know a way to do this or have a good fiddler script?

Http Solutions


Solution 1 - Http

There's an easier way now (as of v4.4.5.1 or earlier).

Right-click the column bar and select Customize columns....

Collection: Miscellaneous
Field Name: RequestMethod
Screenshot of Customize Columns dialog box

Result:
Screenshot of new created column

Solution 2 - Http

Edit your rules, then in the class Handlers add:

public static BindUIColumn("Method", 60)
	function FillMethodColumn(oS: Session){
	 
		return oS.oRequest.headers.HTTPMethod; 
	}

	

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionthamsterView Question on Stackoverflow
Solution 1 - HttpMatthiasView Answer on Stackoverflow
Solution 2 - HttpMichael MacDonaldView Answer on Stackoverflow