Hi All,
In any browser, when a client sends a https request to WebServer(with self-Signed Certificate), Browser prompts with a warning message on whether to proceed or not.
Based on user acceptance, the certificate gets added in the browser certificate pool and doesnt get the warning next time requesting same https URL.
How does go client handle this?
I do not want to go with TLSClientConfig: &tls.Config{InsecureSkipVerify: true} option. I do not want to send the client certificates(self-generated) either (browser doesnt do this)
Is there any way to fetch the certificate received at tranport level from Server, add it to the cert pool and use this certificate while HTTPS GET.
Thanks & Regards,
L Vallandas