I have scenario where my app has to login in by specifying username and password. After successful login I am going to show user all contents.
For example user wants to see https://login.live.com inbox item. Where user will enter his username and pass in my application’s input filed instead of https://login.live.com . Then application will signed him and show his email inbox.
For this purpose I have to use WebView class to host html content. But I cannot just bring the login page directly to user for logging purpose. So I have to sign the user programmatically then show him all content by WebView class.
Thus I thought it should be possible to use https post request to sign first then use same https session. I might be wrong, there could be other way for windows phone 8. I don’t know right api for windows phone 8. So could you please suggest how can I achieve this goal by using windows phone 8 API?
Thanks in advance!