Ichabod Clay
Ichabod Clay

Reputation: 2011

How do I prevent an https response from throwing an AuthenticationException with Fiddler running?

Relative newbie to C# here :)

I'm currently creating a web link scraper and having issues with the responses I'm getting when trying to login to the website via my program. I'm trying to use Fiddler to see if my program is sending the proper data, but my program is throwing an AuthenticationException when trying to get a response from the site with Fiddler running. The requests are being sent over HTTPS and Fiddler's certificate is the cause of the excepting being thrown.

My question is, what can I implement into my program to have it disregard the certificate authentication? As far as my program goes, the requests and responses are being handled by HttpWebRequest and HttpWebResponse classes.

Upvotes: 0

Views: 257

Answers (1)

astro boy
astro boy

Reputation: 1430

Have you done the following: Fiddler https decryption

Upvotes: 2

Related Questions