I have 2 applications: one does the login (app1) and another one does other stuff that I want (app2). The app1 is built in ASP.NET Boilerplate and what I want to do is after login with this app, I want to redirect to the app2. Until now everything is fine, I just used the returnUrl
parameter to redirect to the app2. The problem is that I want to pass to app2 some of the login information like username
. It's not supposed to change anything in app1, so how can I do that?
Both app1 and app2 are built in MVC 5.