在所有IS4快速入门演示中,同意Url都是/consent。有什么方法/地方可以设置它吗?
发布于 2019-01-08 20:30:46
您可以使用IIdentityServerBuilder
界面上提供的选项Api。换句话说,使用DI注册时,请使用以下内容:
services.AddIdentityServer(options =>
{
options.UserInteraction.ConsentUrl = "Your consent Url";
})
https://stackoverflow.com/questions/54083794
复制相似问题