Reputation: 41
I'm planing a micro-service project using .net core web api and about to use identity server for authentication . since there is mobile based clients (android,ios) how can i use identity server login as a web project and other functions like registration,email confirmation , password reset etc via API endpoint
Upvotes: 0
Views: 1039
Reputation: 1195
I am assuming you are planning to use ASP.Net CORE Identity as your identity store. Take a look at IdentityServer4's tutorial projects (https://docs.duendesoftware.com/identityserver/v5/quickstarts/). It has sample code for authentication. As for identity admin functions, IdentityServer doesn't have those functions built in as far as I know. you need to create your own. But there are some good references out there, such as this https://code-maze.com/asp-net-core-identity-series/.
Upvotes: 2