With java in android, is it possible to login to a website so that an html page can be parsed?
I've heard that with computers there's a script called cURL can be used, but is there any such thing with/for android?
thanks (:
EDIT:
I've found a site login which can be achieved using the following method with jsoup:
Connection.Response res = Jsoup.connect(url)
.data("username", "john doe", "password", "mypass")
.method(Method.POST)
.execute();
But currently, I'm getting an SSL error with this method which I'm not sure how to fix.