I have a react-native app, a web api written in asp.net C# and a web app where i used forms authentication from asp.net. It checks the username and password stored in my db and sets cookie.
- What is the type of authentication i should follow?
- Can i use same forms authentication even in react-native. If yes then whats the approach.
- I want all the api calls to be made by authenticated users only. if not authenticated, then send back to login screen.