Same ASP.NET Identity authorization for multiple WebAPIs
I would like to have an unified authorization using the ASP.NET Identity for multiple WebAPIs. Is it possible to login the user in the user WebAPI, create the Bearer token and then honor it in the other APIs? Is there an better schema to use?
7 Replies
Unknown User•11mo ago
Message Not Public
Sign In & Join Server To View
To clarify. I have multiple microservices with their own APIs specific for their little world. But some data has to be shared (this includes auth), hence there is a common API for all the microservices
Unknown User•11mo ago
Message Not Public
Sign In & Join Server To View
Sorry but it is not clear to me what the IDP means
Unknown User•11mo ago
Message Not Public
Sign In & Join Server To View
I would like to achieve the effect that when i sign in once in the service i remain signed in all of the other services
In this case is it a good idea to break the architecture into multiple small APIs?
I think this is good in terms of flexibility of deployment of each of theese APIs
But this poses problems with seamless authentication