I try to log in here: http://www.gszi.sulinet.hu/dinaweb/diakok/belepes.jsp with this:
Connection.Response loginForm = Jsoup.connect("http://www.gszi.sulinet.hu/dinaweb/diakok/belepes.jsp")
.method(Connection.Method.GET)
.execute();
Document doc = Jsoup.connect("http://www.gszi.sulinet.hu/dinaweb/diakok/belepes.jsp")
.data("name","myid")
.data("name","mycode")
.cookies(loginForm.cookies())
.post();
Afterwards, getting the html of a page which I have to login to see, I realize that I couldn't log in. Is there a way to login and then get the html of pages I have access now? Any link, advice or help appreciated.