I am trying to develop a dummy app with Xamarin.Forms and i mainly focus on UWP. I have a login feature for this app and i need to manage sessions. I am consuming a basic web service method for login, it gets user name and password as parameters and returns an access token. I am using this access token for the CRUD operations of this app. This is how i store this access token.
Application.Current.Properties ["access_token"] = token.access_token;
Since i am a newbie for Xamarin i am struggling to understand Session Managament. How am i going to manage a session ? When to expire a session and how ? What might be the security issues ? How can i properly log out a user ?
Any help would be appreciated.