I am struck with an issue. I will explain the issue detailed below.
We have an android application that display files from different web site. Using our app we can download the files from the parent files. For downloading the we need to login to the website first. For login the web sites provides login mechanisms like Google OAuth, Facebook Connect and also their own login mechanism like user id and password. So before downloading file we need to enter the login credentials and connect to the sites. We already have the URL of the files to be downloaded from the site. Using this we will download the files from the site.
What we would like to do is we need a silent login to the web site. The android application have the user credentials of the users and using these credentials. we need to login without displaying the login page. That is when user click on the download button we need to login to the site in background, and need to login. For Google Oath and Facebook connect I can have the APIs for login. But if the websites have only their own login mechanism using user id and password, we don’t have any APIs for login. We need to trace the URL they are using for login the do this I think.
I know this is little immoral thing but for a proof of concept scope we need to do this.
I want to do these from my android app. I heard that some CURL libraries can be used here. But as I am using android and java, how can I solve this? Is it a doable thing? Please help.