Не удалось установить соединение SSL. Удаленный сертификат недействителен в соответствии с процедурой проверки - PullRequest
1 голос
/ 10 мая 2019

Я пытаюсь проверить токен JWT, отправив запрос с помощью Postman, но у меня возникли проблемы с SSL.Я уже отключил RequireHttps в конфигурациях Identity Server 4.

Я использую IdentityServer4 с ASP.Net Core 2

services.AddAuthentication(IdentityServerAuthenticationDefaults.AuthenticationScheme)
                .AddIdentityServerAuthentication(options =>
                {
                    options.Authority = "http://localhost:5000";
                    options.SupportedTokens = SupportedTokens.Jwt;
                    options.RequireHttpsMetadata = false;
                    options.ApiName = "api_name";
                });

Это ошибка, которую я получаю:

An unhandled exception has occurred while executing the request.
System.InvalidOperationException: IDX20803: Unable to obtain configuration from: 'http://localhost:5000/.well-known/openid-configuration'. ---> 
System.IO.IOException: IDX20804: Unable to retrieve document from: 'http://localhost:5000/.well-known/openid-configuration'. ---> 
System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception. ---> 
System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.
...