2017-12-19 19 views
0

토큰을 발급하기위한 ID 서버를 만들었습니다. identityserver3를 사용하여 설정합니다. 토큰 서명에 암호가있는 로컬 .pfx 인증서를 사용하고 있습니다.Identityserver3 오류 https : // localhost : 44300/identity /. well-known/openid- 구성

이 작업은 정상적으로 작동했지만 첨부 파일에 표시된대로 다음 오류가 표시되는 이유는 확실하지 않습니다.

정말 나를 미치게합니다.

다음은 권한 서버의 startup.cs에있는 코드입니다. 인증서 파일은 \ 빈 \ debug 폴더에 있습니다

public class X509Certificate2Wrapper : IX509Certificate2Wrapper 
{ 
    public X509Certificate2 LoadCertificate(string filename, string password) 
    { 
     var path = [email protected]"{AppDomain.CurrentDomain.BaseDirectory}{filename}"; 

     return new X509Certificate2(path, password); 
    } 
} 

    app.Map("/identity", idsrvApp => 
    { 
     idsrvApp.UseIdentityServer(new IdentityServerOptions 
     { 
      SiteName = "Identity Manager", 
      IssuerUri = Common.Constants.IdSrvIssuerUri, 
      SigningCertificate = X509Certificate2Wrapper.LoadCertificate(CertificateFilename, CertificatePassword), 
      Factory = factory, 
      RequireSsl = true, 
      EnableWelcomePage = false, 
      AuthenticationOptions = new AuthenticationOptions 
      { 
       EnableSignOutPrompt = false, 
       EnablePostSignOutAutoRedirect = true, 
       PostSignOutAutoRedirectDelay = 3, 
       CookieOptions = new IdentityServer3.Core.Configuration.CookieOptions 
       { 
        ExpireTimeSpan = new TimeSpan(0, IdentityServerServices.AuthenticationTimeout(), 0), 
        SlidingExpiration = true 
       }, 
       // 
       // Note: Uncomment following line to enable WindowsAuthentication only - logout related settings will also require removal! 
       // 
       //EnableLocalLogin = false, 
       IdentityProviders = ConfigureIdentityProviders 
      }, 
      Endpoints = new EndpointOptions 
      { 
       EnableAccessTokenValidationEndpoint = true, 
       EnableAuthorizeEndpoint = true, 
       EnableCheckSessionEndpoint = false, 
       EnableClientPermissionsEndpoint = false, 
       EnableCspReportEndpoint = false, 
       EnableDiscoveryEndpoint = true, 
       EnableEndSessionEndpoint = true, 
       EnableIdentityTokenValidationEndpoint = true, 
       EnableIntrospectionEndpoint = false, 
       EnableTokenEndpoint = true, 
       EnableTokenRevocationEndpoint = false, 
       EnableUserInfoEndpoint = true 
      } 
     }); 
    }); 

enter image description here

답변