John
John

Reputation: 227

IdentityServer 4 connect MVC5 as à client

How should I configure MVC 5 to connect to IdentityServer4 is there any example for that? Can't seem to get it to work.

Regards, John

Upvotes: 11

Views: 5763

Answers (1)

Scott Brady
Scott Brady

Reputation: 5598

Exactly the same as you would connect an ASP.NET MVC 5 client to Identity Server 3. You integrate with Identity Server at the protocol level, there are no implementation specifics, so what integrates with Identity Server 3 can integrate with Identity Server 4.

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

There are 5 example MVC 5 clients in that repository.

Upvotes: 11

Related Questions