IdentityServer 4 connects MVC5 as a client

How do I configure MVC 5 to connect to IdentityServer4, is there any example for this? It does not seem to work.

Regards, John

+6
source share
1 answer

Just as you must connect the ASP.NET MVC 5 client to Identity Server 3. You integrate with Identity Server at the protocol level, there are no implementation features, so integration with Identity Server 3 can integrate with Identity Server 4.

Check out the repository of Identity Server 3 samples that use the .NET Framework (not Core): https://github.com/IdentityServer/IdentityServer3.Samples/tree/master/source/Clients

There are 5 MVC 5 clients in this repository.

+8
source

All Articles