c#
기본 연결이 닫혔습니다. 보내기에서 예기치 않은 오류가 발생했습니다.
┌(  ̄∇ ̄)┘™
2023. 11. 7. 03:32
728x90
var httpResponse = (HttpWebResponse)httpRequest.GetResponse(); 호출 시
-> 기본 연결이 닫혔습니다. 보내기에서 예기치 않은 오류가 발생했습니다.
// .NET 4.0 이하에서 TLS 1.2 활성화
ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072; // TLS 1.2의 정수 값
728x90
// .NET 4.5 이상에서 TLS 1.2 활성화
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
728x90