asp.net web api - Enterprise Application with MVC and Mobile app - Is IdentityServer required? -
here scenario enterprise application developing:
- there angular-based asp.net mvc core web application
- there native mobile apps android , ios
both 1 , 2 invoke web api endpoints (part of same enterprise application, not 3rd party).
the user shown login page in both web application , mobile app. in case of web based application, once user authenticated, mvc serve ui templates , angular call web api endpoints browser. of course, in case of native app, mvc not serving pages.
access different parts of application based on user roles (example: user can authenticated may not authorized view dashboard unless manager).
calls web api require authorized (example, can't dashboard data unless call coming manager).
is identityserver4 choice here? or can use asp.net core identity of this?
Comments
Post a Comment