大家好,我现在正在使用.net core 2.1.3
当我尝试通过firefox或chrome打开时,通过“dotnet new webapi”安装webapi项目时,它给了我这个错误
当我尝试通过firefox或chrome打开时,通过“dotnet new webapi”安装webapi项目时,它给了我这个错误
HttpsConnectionAdapter[1] Failed to authenticate HTTPS connection.
System.IO.IOException: Authentication Failed because the remote party has closed the transport stream.
解决方法
我面临同样的问题.
在我的测试中,似乎使用Kestrel和SSL的问题. (其他IISExpress可以)
在我的测试中,似乎使用Kestrel和SSL的问题. (其他IISExpress可以)
当您浏览它时,看起来SSL还没有准备好.
对我来说,修复只是简单地改变launchSetting中的位置:
"applicationUrl": "https://localhost:443;http://localhost:80"
至
"applicationUrl": "http://localhost:80;https://localhost:443"
使用app.UseHttpsRedirection();在Startup.cs中
它将首先进入端口80,然后重定向到端口443