Issue
Why doesn't Fiddler show curl
traffic? Other traffic gets displayed, just not curl
. How can I get fiddler to intercept curl
traffic?
Solution
Fiddler will not intercept curl traffic by default. You'll need to specify the -x
proxy option. If curl displays an SSL error message, additionally use the -k
option to disable SSL validation.
curl -x 127.0.0.1:8888 -k www.example.com
Answered By - BSalita Answer Checked By - Robin (WPSolving Admin)