IdentityServer 4 文档说: “要向 MVC 应用程序添加对 OpenID Connect 身份验证的支持,您首先需要......然后将以下内容添加到启动中的配置服务:
services.AddAuthentication(options =>
{
options.DefaultScheme = "Cookies";
options.DefaultChallengeScheme = "oidc";
})
.AddCookie("Cookies")
.AddOpenIdConnect("oidc", options =>
{
options.Authority = "https://localhost:5001";
options.ClientId = "mvc";
options.ClientSecret = "secret";
options.ResponseType = "code";
options.SaveTokens = true;
});
”
此示例展示了如何在服务器运行时连接外部提供者。
当服务器已经运行时,有没有办法连接/断开它,就像“即时”一样?
谢谢。