This is a migrated thread and some comments may be shown as answers.

Fiddler not detecting requests prepared by Python's requests library

0 Answers 304 Views
Fiddler Classic
This is a migrated thread and some comments may be shown as answers.
Drew
Top achievements
Rank 1
Drew asked on 27 Jun 2017, 05:19 PM

 

Using the Python requests library, I can do something like this:

<p>session = requests.Session()</p><p>session.post("https://testurl", ..., verify=false)</p>

 

and Fiddler will detect the web request just fine. However, if I use a prepared request like so:

<p>session = requests.Session()</p><p>request = requests.Request("POST", "https://testurl", ...)</p><p>session.prepare_request(request)</p><p>session.send(prepared, verify=false)</p><p></p>

 

the sent web request does not show up in the session list in Fiddler. I've confirmed that the request is getting sent and receiving a response through the Python script, but for some reason it's not showing up in Fiddler. Any ideas? I don't have any filters or rules enabled.

No answers yet. Maybe you can help?

Tags
Fiddler Classic
Asked by
Drew
Top achievements
Rank 1
Share this question
or