Firstly I appologize for my spelling and for being a newbie in advance.
I have built an asp.net 5 mvc 6 server where when users login through my web and make further requests I can verify the user's authentication by simply using the [authorize] attribute for my controller/action. I am now building an android app and wish to implement a login system to my server that utilizes the asp.net mechanism. Therefore I have built a controller that calls the signinmanager to sign in my android app users. When the android app tries to make other requests that are flagged by the authorize attribute instead of getting the request result, their request is being forwarded to the webapp's login action which means they are unauthroized.
I understand that there is some background session management in the webapp and wish to implement it through the android app. How do I make my android app web requests to my server pass the authroized attribute check?
Thanks in advance!