是否有一种本地方法可以在IdentityServer4中禁用grant_types_supported?

时间:2017-09-06 18:52:55

标签: c# asp.net-core identityserver4

目前,我正在使用以下内容:

services.AddIdentityServer(options =>
    {
        options.Discovery.ShowGrantTypes = false;
        options.Discovery.CustomEntries.Add("grant_types_supported", new [] {"client_credentials"});
    })

/.well-known/openid-configuration生成的发现数据看起来是正确的,但我希望找到一种不太常见的配置方式。我们所有的身份验证/授权都是使用client_credentials的服务器到服务器。

0 个答案:

没有答案