服務器提交了協議沖突. Section=ResponseHeader Detail=CR 後面必須是 LF
The server committed a protocol violation. Section=ResponseHeader Detail=CR must be followed by LF
主體意思是微軟沒有容忍不符合RFC 822中的httpHeader必須以CRLF結束的規定的服務器響應。
一個解決方案是在application.config或web.config文件裡加入
<system.net>
<settings>
<httpWebRequest useUnsafeHeaderParsing="true" />
</settings>
</system.net>
允許系統容忍(tolerant)只以CR或LF結尾的hearder信息