Mam stronę internetową działającą na ASP.NET MVC 4.5.2. Mam serwer działa IdentityServer4 ale gdy próbuję i uwierzytelniać przeciwko niemu otrzymuję:ASP.NET MVC 4.5.2 łączenie z IdentityServer4
invalid_request
dla ASP.NET MVC documentation podstawowej posiada:
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationScheme = "Cookies"
});
app.UseOpenIdConnectAuthentication(new OpenIdConnectOptions
{
AuthenticationScheme = "oidc",
SignInScheme = "Cookies",
Authority = "http://localhost:5000",
RequireHttpsMetadata = false,
ClientId = "mvc",
SaveTokens = true
});
jestem tym następujący pakiet Nuget w mój projekt Microsoft.Owin.Security.OpenIdConnect. Mój kod jest następujący:
app.UseCookieAuthentication(new CookieAuthenticationOptions
{
AuthenticationType = "Cookies"
});
app.UseOpenIdConnectAuthentication(new OpenIdConnectAuthenticationOptions
{
AuthenticationType = "oidc",
SignInAsAuthenticationType = "Cookies",
Authority = "http://localhost:5000",
ClientId = "mvc",
});
Jak prawidłowo połączyć się z nim?
Co dzienniki powiedzieć na temat stosowania IdentityServer4? dodaj trochę logowania. – Lutando
Witaj, próbuję tego samego ... Czy kiedykolwiek miałeś okazję pracować? Czy to działa? –
@ JalalEl-Shaer dodał odpowiedź. Mam nadzieję, że to pomoże. – Liam