Hi guys Im very frustrate searching this question on Internet. I want to get the html code from WEBVIEW and then put it in textview I dont want to use jsoup for some reason My only hope is javascript Interface
Please give me a working code to study
Hi guys Im very frustrate searching this question on Internet. I want to get the html code from WEBVIEW and then put it in textview I dont want to use jsoup for some reason My only hope is javascript Interface
Please give me a working code to study
First Login and get login cookie then parse website
Connection.Response response= Jsoup.connect("https://loginpage")
.data("user",user,"pass",pass)
.method(Connection.Method.POST)
.execute();
Map<String,String> cookie=response.cookies();
Document document=Jsoup.connect("https://loggedwebsite")
.cookies(response.cookies())
.get();
Check also this: How to post form login using jsoup?