SSO between next js application and and asp.net framework
Hi have an application built using next.js and ASP.NET core WEB API called as C1 and i have one more application built on asp.net framework using MVC called as H1. I want to create a SSO like experience as user should login to C1 application then when someone opens my H1 then i should not ask for authentication.
One way i was thinking to have a secret key stored in both and create a JWT and send it to H1 from C1, is there any other way to do that