參考
- https://www.cnblogs.com/Can-daydayup/p/14609089.html
環境
環境 |
版本 |
說明 |
Windows |
Windows 10 家庭中文版 22H2 19045.4412 |
|
VS Code |
1.90.0 |
|
Microsoft Visual Studio |
Microsoft Visual Studio Community 2022 (64 位) - 17.6.5 |
支援.net 4.x 程式需要額外配置。 |
Microsoft .Net SDK |
4.8 |
手動安裝 |
正文
//todo:指定請求包的安全協議,因為不知道你當前專案到底是哪個版本所以為了安全保障都加上
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.SystemDefault | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls13;