记录常见的HTTP请求错误

服务器提交了协议冲突. Section=ResponseHeader Detail=CR 后面必须是 LF

解决方案:winfrom 在app.config种添加 web 在 web.config种添加


    
      
    
  

  

基础连接已经关闭: 发送时发生错误。

https协议问题,增加

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;

 http协议问题,增加

request.ProtocolVersion = HttpVersion.Version10;  

  

你可能感兴趣的:(记录常见的HTTP请求错误)