When I use fiddler any request using python fails, pip doesn't work either.
ValueError: check_hostname requires server_hostname
What can I do about it?
When I use fiddler any request using python fails, pip doesn't work either.
ValueError: check_hostname requires server_hostname
What can I do about it?
Copyright © 2021 Jogjafile Inc.
This happens because you are trying to connect using
https. Even if you manage to connect, you would need to load local SSL certificates to authenticate the connection when Fiddler is active (Fiddler provides you a guide on how to do this with a browser). To bypass all this, use the proxy fiddler is listening on and disable certificate check. For example, using requests:Output