IdentityServer支持的选项
builder.Services.AddIdentityServer(o => { //token中的issuer o.Issuer = "microsoft"; //token验证选项 o.TokenValidations.ValidateScope = true; o.TokenValidations.Scope = "api,openid"; });
There was an error while loading. Please reload this page.