0

Startup.cs 设置有问题,根据我应该添加的文档

services.AddAuthentication()
    .AddCertificate(options =>
    {
        options.AllowedCertificateTypes = CertificateTypes.All;
        options.RevocationMode = X509RevocationMode.NoCheck;
    });

但我得到了错误:

“AuthenticationBuilder”不包含“AddCertificate”的定义,并且没有扩展方法“AddCertificate”。

在示例代码设置IdentityServer(HOST)/ConsoleMTLSClient中它可以工作。

4

1 回答 1

0

您必须添加Microsoft.AspNetCore.Authentication.Certificate NuGet 包。

于 2021-01-23T13:35:45.630 回答