Fiddler is capturing a lot of HTTP OPTIONS calls, which I have no interest in.
Is it possible to ignore these and only see GET and POST?
Just go to the Filters tab in Fiddler and then the "Client Process" fieldset and then choose "Show only traffic from " and choose the appropriate process.
Select one or more sessions in the Sessions List. Press R or right-click the session(s) and click Replay > Reissue Requests.
In Fiddler, select the Inspectors tab to see the Request and Response. Now, this tab is split horizontally; the Request Inspectors are across the top, and the Response Inspectors are across the bottom. If you don't see the tabs along the bottom, grab the blue splitter line near the bottom and drag it upward.
In Fiddler, click "Rules" --> "Customize Rules". This will open a script file allowing you to create custom rules.
find OnBeforeRequest
and add in this code:
static function OnBeforeRequest(oSession: Session) {
if (oSession.HTTPMethodIs("OPTIONS")) {
oSession["ui-hide"] = "true";
}
find OnBeforeResponse
and add in this code:
static function OnBeforeResponse(oSession: Session) {
if (oSession.HTTPMethodIs("OPTIONS") && oSession.responseCode == 200) {
oSession["ui-hide"] = "true";
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With