我尝试发送值(https网站)获取cookie并重定向otherpage.aspx使用此登录cookie。但cookie不起作用(此代码在http网站上运行)。我分享了我的代码有什么不对?
除了基本上我用HtmlUnit(java)库做这个过程,但Android不支持这个库。什么是Android的最佳替代(htmlunit)库?
提前谢谢。
Response res = Jsoup.connect("https://abc.com/index.aspx")
.followRedirects(true)
.data("textKulID", "USERNAMEISHERE")
.data("textSifre", "PASSISHERE")
.method(Method.POST)
.execute();
doc2 = Jsoup.connect("https://abc.com/otherpage.aspx")
.followRedirects(true)
.cookies(res.cookies())
.post();