- Install fiddler
winget install -e --id Telerik.Fiddler
- Open fiddler and go to
Tools -> Options -> HTTPS
- Enable
Decrypt HTTPS traffic
- Click the
Actions
button and selectExport root certificate to desktop
- Right click the
FiddlerRoot.cer
file on the desktop and clickOpen with -> Crypto Shell Extensions
- In the Certificate window that opens up go to
Details -> Copy to File
- Click
Next
then selectBase-64 encoded X.509 (.CER)
then specify the file name (E.G. FiddlerRootBase64.cer) - Click
Next
to create the new file - Open the file and copy the contents to the clipboard
- Find out where python is storing its certificate authority certs. For newer version of the python you can run the following commands
pip install certifi
python -c "import certifi; print(certifi.where())"
- Open the file where the CA certs are and paste the fiddler base64 certificate contents to the end of the file
The easiest way to do this is to have a block of code in the entry point of your application that sets some environment variables that the python requests
module will use
import os
os.environ['HTTP_PROXY'] = 'http://127.0.0.1:8888'
os.environ['http_proxy'] = 'http://127.0.0.1:8888'
os.environ['HTTPS_PROXY'] = 'https://127.0.0.1:8888'
os.environ['https_proxy'] = 'https://127.0.0.1:8888'
You can also configure the proxy via code in the requests module if preferred
If you get any check_hostname requires server_hostname
when using the proxy try updating changing the version of the urllib3
python module you're using https://stackoverflow.com/questions/66642705/why-requests-raise-this-exception-check-hostname-requires-server-hostname
It allows you to decrypt all HTTPS traffic in Fiddler that's coming to and from your Python application. It's useful if you want to get detailed information on why requests are failing