My version ASP.NET CORE & Angular v9.1.0 with .NET Core 3.1
I have 2 projects and i want to share user login authen
How can i pass user authen to other project?
Thank you
5 Answer(s)
-
0
Hi @kwanp
You can take a look at how Public website project logins using the Host project. These two apps are using a shared login like you wanted.
-
0
what about if i want to share user login authen to other website on different Server and port, It is possible?
Thank you
-
0
Hi @kwanp
In that way, maybe it is better to use Identity Server on your main app. You can enable identity server on your AspNet Zero app, and other website can login to your Zero app using OpenID Connect protocol. In this way, you can implment a single sign on.
-
0
Any tutorial that i can learn how to implement Identity Server to use OpenID Connect protocol.
Thank you