繁体   English   中英

IdentityServer4 - Angular 如何将默认登录页面更改为 Angular 组件

[英]IdentityServer4 - Angular how to change the default Login page to Angular component

如何将 Login.cs.html 页面从 IdentityServer4 更改为 Angular 组件?

我该怎么做?

谢谢

您可以通过UserInteraction 设置设置登录页面的路径。 在此处阅读有关 IDS4 登录流程的更多信息。

例如,如果您在http://localhost:3000上托管了 angular 应用程序,则设置如下所示:

services.AddIdentityServer(
    options =>
    {
        options.UserInteraction.LoginUrl = "http://localhost:3000/login";
        options.UserInteraction.ErrorUrl = "http://localhost:3000/error";
        options.UserInteraction.LogoutUrl = "http://localhost:3000/logout";
    })
    .AddInMemoryIdentityResources(Config.GetIdentityResources())
    .AddInMemoryApiResources(Config.GetApis())
    .AddInMemoryClients(Config.GetClients())
    .AddTestUsers(Config.GetTestUsers());

是一个包含所有详细信息的帖子。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM