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

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

Found instructions in the wiki screenshot for adding session variables:

cols add "client IP address" X-CLIENTIP

But HTTPMethod does not seem so simple.

Does anyone know a way to do this or have a good violinist script?

+55
fiddler
Sep 07 '12 at 19:01
source share
2 answers

Change your rules, then in the Handlers class add:

public static BindUIColumn("Method", 60) function FillMethodColumn(oS: Session){ return oS.oRequest.headers.HTTPMethod; } 
+20
Oct 09 '12 at 19:43
source

Now easier (starting with version 4.4.5.1 or earlier).

Right click column column and select Customize columns ....

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

Result:
Screenshot of new created column

+117
Nov 12 '13 at 16:26
source



All Articles