Recently because of business needs, may catch small program package, small program network request Force HTTPS, this time Fiddler is a good choice, but the Mac to use Fiddler is a little more trouble.
The first step is to install the Mono framework
http://www.mono-project.com/download/stable/
The second step, after installation, open Terminal, enter:
/library/frameworks/mono.framework/versions/<mono version>/bin/mozroots--import--sync
<mono version> Here Enter the installed Mono version number, such as this:
/library/frameworks/mono.framework/versions/5.10.1/bin/mozroots--import--sync
If you do not know the version number, first go to the folder--------Enter:
/library/frameworks/mono.framework/versions/
There is a folder, the name is the version number.
Finally, download the OS Fiddler and unzip:
Https://www.telerik.com/download/fiddler
Open the Terminal and execute it under the Fiddler directory:
sudo mono Fiddler.exe
If you report this error:
=================================================================got a SIGSEGV while executing native code. This usually Indicatesa fatal error on the Mono runtime or one of the native librariesused by your application.=========== ======================================================
Then switch to 32-bit boot:
sudo mono--arch=32 Fiddler.exe
Use Fiddler under Mac