Reputation: 8931
Why doesn't Fiddler show curl
traffic? Other traffic gets displayed, just not curl
. How can I get fiddler to intercept curl
traffic?
Upvotes: 71
Views: 18323
Reputation: 1126
In Telerik Fiddler Classic, use
curl --url example.com -x 127.0.0.1.8888 --ssl-no-revoke
Upvotes: 2
Reputation: 8931
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
Upvotes: 98