Hi
In my Xamarin forms app I have a hybrid web view that open an asp.net core application. When a person logs in on the WebView, Identity creates authentication cookie in the browser. So it knows the user is logged in and they can see the protected areas of the site. The session cookie is called .AspNetCore.Cookies
Could I have a login page in xamarin that creates that specific type of cookie so I can set it in the WebView and avoid logging in using the WebView ?
I would like to open the app, display the login form. call the api to check the user credentials, get the token and then create the .AspNetCore.Cookies and inject it in the browser so the user only logs in from Xamarin and not from the WebView.
Hope this makes sense.