I’m trieing to capture https request via the postman proxy. It works fine when I’m using http but whenever I try it with https, I get stuck.
I followed this guide for setting up the root certificate in windows:
Then I validate in power shell if everything is working:
This works:
curl http://www.google.com -v -Proxy http://127.0.0.1:5555
This doesnt work:
curl https://www.google.com -v -Proxy http://127.0.0.1:5555
I get stuck when I try https. No error messages. Just getting stuck there.
I rebooted my computer and postman multiple times, after setting up the root certificate according to the manual.
So what am I missing, why is it not working?