在使用默认嵌入式登录页面的identityServer3中,我已将SiteName设置为自定义值。
我希望默认登录页面显示将它们路由到登录页面的客户端应用程序的名称......这可能或我是否需要为自己的页面设置角色?
var options = new IdentityServerOptions
{
SiteName = "My Authenitcation Services",
SigningCertificate = SigningCertificate,
Factory = factory
};
答案 0 :(得分:0)
要显示自定义应用程序名称,您需要覆盖局部视图。 IdentityServer3示例:EmbeddedAssetsViewService显示了如何完全执行此操作。 Basicly ...
你应该好好去...... 查找示例代码示例可能有点困难...... 在哪里下载示例代码:[link] 以下是示例下载中的示例代码位置:
..\IdentityServer3.Samples-master\source\DefaultViewService\EmbeddedAssetsViewService