[Feature] Support for corporate self-signed certificates
In a corporate environment, you'll often have VPN clients that MITM all internet connections through a self-signed certificate. My company is using Zscaler for example.
Now with a typical Python installation I can just add that root certificate to the CA list (using the certifi package works well) and for other native apps or electron apps, they'll use the system's keychain where the corporate certificate has been added already.
But HTTPie desktop does not use either my standard python install nor the system's keychain. I suspect you bundle a python install directly inside the app?
So is there a way to add self-signed certificates in the app?
Note: I know about the option to disable SSL verification and it works in a pinch but I'd rather not leave it off all the time.
Plus-one on this. I usually use the CLI, which makes working with SSL certs easy. Surprised not to find matching functionality in the desktop client.