Golang
1. Problems
Proxyman can't capture any HTTP/HTTPS traffic from the Golang Server.
The reason is that some network libraries (such as net/http) won't respect the System HTTP Proxy, so no traffic goes through the Proxyman app.
2. Solution
net/http
Config Proxy to Proxyman, by default, it's at IP = localhost, port 9090
Tell the Transport to trust Proxyman self-signed certificate. Otherwise, you will get an SSL Error because net/http rejects.
Last updated