У меня есть веб-сайт, работающий на ASP.NET MVC 4.5.2. У меня есть сервер IdentityServer4, но когда я пытаюсь его аутентифицировать, я получаю:
invalid_request
Для ASP.NET Core MVC документация имеет:
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationScheme = "Cookies"
});
app.UseOpenIdConnectAuthentication(new OpenIdConnectOptions
{
AuthenticationScheme = "oidc",
SignInScheme = "Cookies",
Authority = "http://localhost:5000",
RequireHttpsMetadata = false,
ClientId = "mvc",
SaveTokens = true
});
Я включил следующий пакет NuGet в свой проект Microsoft.Owin.Security.OpenIdConnect. Мой код выглядит следующим образом:
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = "Cookies"
});
app.UseOpenIdConnectAuthentication(new OpenIdConnectAuthenticationOptions
{
AuthenticationType = "oidc",
SignInAsAuthenticationType = "Cookies",
Authority = "http://localhost:5000",
ClientId = "mvc",
});
Как правильно подключиться к нему?