Warm tip: This article is reproduced from stackoverflow.com, please click
curl proxy ssl windows fiddler

Why Doesn't Fiddler Show Curl Traffic?

发布于 2020-04-08 15:39:16

Why doesn't Fiddler show curl traffic? Other traffic gets displayed, just not curl. How can I get fiddler to intercept curl traffic?

Questioner
BSalita
Viewed
102
BSalita 2016-06-02 07:50

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