Challenges Encountered in Submitting Login Forms with Jsoup
Despite entering valid login credentials, you may encounter difficulties accessing a site using the provided code. Upon execution, the code fails to authenticate, indicating a potential issue.
One possible oversight pertains to the requirement of additional values beyond username, password, and cookies. Specifically, the site necessitates the inclusion of VIEWSTATE and EVENTVALIDATION.
To address this, retrieve these values from the response of the initial GET request:
Document doc = loginForm.parse();
Element e = doc.select("input[id=__VIEWSTATE]").first();
String viewState = e.attr("value");
e = doc.select("input[id=__EVENTVALIDATION]").first();
String eventValidation = e.attr("value");
Incorporate these values into the subsequent POST request:
org.jsoup.nodes.Document document = (org.jsoup.nodes.Document) Jsoup.connect("https://www.capitaliq.com/CIQDotNet/Login.aspx/authentication.php").userAgent("Mozilla/5.0")
.data("myLogin$myUsername", "MyUsername")
.data("myLogin$myPassword, "MyPassword")
.data("myLogin$myLoginButton.x", "22")
.data("myLogin$myLoginButton.y", "8")
.data("__VIEWSTATE", viewState)
.data("__EVENTVALIDATION", eventValidation)
.cookies(loginForm.cookies())
.post();
Include the userAgent field to ensure compatibility with the site's browser-specific rendering.
Enhancements
To activate the "remember me" feature during login:
.data("myLogin$myEnableAutoLogin", "on")
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3