Hiện tại mình đang sử dụng code dưới, để tải file text từ 1 website bất kỳ về web của mình để xử lý, nhưng khi download đọc file read dưới dạng http thường thì tải đọc bình thường, nhưng khi đọc các file, các web có https thì không đọc được. Nó báo lỗi dưới. Có cách nào bỏ qua https (Ignore SSL Certificate) bỏ qua ssl mỗi khi đọc tải file .txt trên 1 web bất kỳ không giúp mình với. Cảm ơn Mã: var url = "https://tenweb.com/text.txt"; var textFromFile = (new WebClient()).DownloadString(url); Lỗi: SocketException: An existing connection was forcibly closed by the remote host 'The underlying connection was closed: An unexpected error occurred on a send.'
Em thêm cái code bỏ qua ssl, https đi như sau sẽ tải được ngay nhé: Mã: var url = "https://tenweb.com/text.txt"; ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; var textFromFile = (new WebClient()).DownloadString(url); Thông tin thêm: với php linux thì gọi nó là: --no-check-certificate