web-dev-qa-db-ja.com

jsoupを使用してフォームログインを投稿する方法は?

here でログインしたい enter image description here ソースコード

<HTML><HEAD><TITLE>:: Dhaka Electric Supply Company Limited (DESCO)::</TITLE>
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<META http-equiv=Pragma content=no-cache>
<META http-equiv=imagetoolbar content=no>
<META content="Home Page of  Dhaka Electric Supply Company Limited" name=description>
<META content="MSHTML 6.00.2900.2180" name=GENERATOR>
<style type="text/css">
    img{
        border:0px;
    }   
</style>
<script type="text/javascript" src="js/ajax-dynamic-content.js"></script>
<script type="text/javascript" src="js/ajax.js"></script>
<script type="text/javascript" src="js/ajax-tooltip.js"></script>   
<link rel="stylesheet" href="css/ajax-tooltip.css" media="screen" type="text/css">
<link rel="stylesheet" href="css/ajax-tooltip-demo.css" media="screen" type="text/css">
<LINK media=all href="css/global.css" type=text/css rel=stylesheet>


</HEAD> 
<BODY>
<DIV id=over style="DISPLAY: none"></DIV>
<DIV class=baselayout>
<DIV class=pagetopshadow></DIV>
<DIV class=basebg>
<DIV class=pageleft></DIV>
<DIV class=pagecenter>
<DIV id=Header>
</DIV>
<DIV id=Menu>
</DIV>
<DIV id=HomeContent>
<DIV class=right>
<DIV class=homeintro>

<div style="padding-top: 0px;">
<script> 
function checkLogin()
 { if( document.login.username.value == '') 
  { 
  alert( 'Please enter  your account number' );
   return false; 
   }return true;
   }
   alert('Payments through VISA and Master Card are stopped by DBBL. only DBBL Nexus card is allowed.');
    </script>

        <form NAME='login' METHOD='POST' ACTION='authentication.php'>

          <table width="350" height="181"cellpadding='0' cellspacing='0' border='0' style="border:#e5e5e5 0px solid; BACKGROUND: url(css/images/top9.png) no-repeat left top;" align="center">
          <tr> <td rowspan="6" style="padding-left:15px;"><img src="css/images/groupperms.gif" width="50" height="50"><td></tr>
            <tr>
              <td colspan="2" height="50"></td>
            </tr>
           <tr>
              <td nowrap><span class="textcolor1">Account No. </span></td>
              <td><input type='text' name='username' style="border:#cacaca 2px solid; color:#000099;" value=''></td></tr>

            <tr>
            <td> <a class="uiTooltip" href="#" onMouseOver="ajax_showTooltip(window.event,'tooltip/help.html',this);return false" onMouseOut="ajax_hideTooltip()">Help</a></td>
            <td><input name="login" type='submit' value='Login' style="width:80px; font-family:Arial, Helvetica, sans-serif; font-weight:bold; color:#FFFFFF; border:#000000 2px solid; cursor:pointer; background-color: #1b4585;"  border="0" align="right" title="Login"  onClick="return checkLogin();"/></td>
            </tr>

        </table>

        </form>
<table width="630" border="0" cellspacing="2" cellpadding="2" align="center" bgcolor="#FFFFFF" bordercolor="#FFFFFF">
  <tr>
    <td width="80"></td>
    <td><img src="images/right_3.gif"/></td>
    <td><span class="textcolor"><strong><a href='https://www.desco.org.bd/index.php?page=internet-bill-payment' target="_blank" class="uiTooltip">Before, use this facility/services please read instructions...</a></strong></span></td>
  </tr>
  </table>
<p align="center" class="textcolor"><strong><a href='https://www.desco.org.bd' class="uiTooltip">Back Home</a></strong></p>
<table align="center" width="135" border="0" cellpadding="2" cellspacing="0" title="Click to Verify - This site chose VeriSign SSL for secure e-commerce and confidential communications.">
<tr>
<td width="135" align="center" valign="top"><script type="text/javascript" src="https://seal.verisign.com/getseal?host_name=www.desco.org.bd&amp;size=S&amp;use_flash=YES&amp;use_transparent=YES&amp;lang=en"></script><br />
<a href="http://www.verisign.com/ssl-certificate/" target="_blank"  style="color:#000000; text-decoration:none; font:bold 7px verdana,sans-serif; letter-spacing:.5px; text-align:center; margin:0px; padding:0px;">ABOUT SSL CERTIFICATES</a></td>
</tr>
</table>


</div>
<div align="center" style="padding-top:10px;">



<CENTER><B>
    Total Visits:  1</B></CENTER>   
</div>
</DIV>
</DIV>
</DIV>
</DIV>
<DIV class=pageright></DIV></DIV>
<DIV class=pagebotshadow>
<DIV  id=Footer>Copyright © 2010 Dhaka Electric Supply Company Ltd. All rights reserved.</DIV>
</DIV>
</DIV>
</BODY>
</HTML>

基本的に以下のコードはフォームです

<form NAME='login' METHOD='POST' ACTION='authentication.php'>

      <table width="350" height="181"cellpadding='0' cellspacing='0' border='0' style="border:#e5e5e5 0px solid; BACKGROUND: url(css/images/top9.png) no-repeat left top;" align="center">
      <tr> <td rowspan="6" style="padding-left:15px;"><img src="css/images/groupperms.gif" width="50" height="50"><td></tr>
        <tr>
          <td colspan="2" height="50"></td>
        </tr>
       <tr>
          <td nowrap><span class="textcolor1">Account No. </span></td>
          <td><input type='text' name='username' style="border:#cacaca 2px solid; color:#000099;" value=''></td></tr>

        <tr>
        <td> <a class="uiTooltip" href="#" onMouseOver="ajax_showTooltip(window.event,'tooltip/help.html',this);return false" onMouseOut="ajax_hideTooltip()">Help</a></td>
        <td><input name="login" type='submit' value='Login' style="width:80px; font-family:Arial, Helvetica, sans-serif; font-weight:bold; color:#FFFFFF; border:#000000 2px solid; cursor:pointer; background-color: #1b4585;"  border="0" align="right" title="Login"  onClick="return checkLogin();"/></td>
        </tr>

    </table>

    </form>

enter image description here

私はこれを試しています

package jsouptest;

import org.jsoup.Connection;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;

public class JsouptTest {
    public static void main(String[] args) throws Exception {

        Connection.Response loginForm = Jsoup.connect("https://www.desco.org.bd/ebill/login.php")
                .method(Connection.Method.GET)
                .execute();

        Document document = Jsoup.connect("https://www.desco.org.bd/ebill/login.php")
                .data("cookieexists", "false")
                .data("username", "32007702")
                .data("login", "Login")
                .cookies(loginForm.cookies())
                .post();
        System.out.println(document);

    }

}

しかし、エラーを下回っています

Exception in thread "main" Java.net.SocketTimeoutException: Read timed out
    at Java.net.SocketInputStream.socketRead0(Native Method)
    at Java.net.SocketInputStream.read(SocketInputStream.Java:152)
    at Java.net.SocketInputStream.read(SocketInputStream.Java:122)
    at Sun.security.ssl.InputRecord.readFully(InputRecord.Java:442)
    at Sun.security.ssl.InputRecord.read(InputRecord.Java:480)
    at Sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.Java:927)
    at Sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.Java:1312)
    at Sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.Java:1339)
    at Sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.Java:1323)
    at Sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.Java:563)
    at Sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.Java:185)
    at Sun.net.www.protocol.https.HttpsURLConnectionImpl.connect(HttpsURLConnectionImpl.Java:153)
    at org.jsoup.helper.HttpConnection$Response.execute(HttpConnection.Java:439)
    at org.jsoup.helper.HttpConnection$Response.execute(HttpConnection.Java:424)
    at org.jsoup.helper.HttpConnection.execute(HttpConnection.Java:178)
    at jsouptest.JsouptTest.main(JsouptTest.Java:12)

何か不足していますか?修正方法

16

POSTリクエストを行うために使用しているURLは間違っています。フォームに特定のリクエストを行う必要がある場合、フォームに存在するWebページを使用する必要があるからです。タグ、この場合は「authentication.php」。

したがって、コードは次のようになります。

    package jsouptest;

    import org.jsoup.Connection;
    import org.jsoup.Jsoup;
    import org.jsoup.nodes.Document;

    public class JsouptTest {
        public static void main(String[] args) throws Exception {

           Connection.Response loginForm = Jsoup.connect("https://www.desco.org.bd/ebill/login.php")
            .method(Connection.Method.GET)
            .execute();

           Document document = Jsoup.connect("https://www.desco.org.bd/ebill/authentication.php")
            .data("cookieexists", "false")
            .data("username", "32007702")
            .data("login", "Login")
            .cookies(loginForm.cookies())
            .post();
           System.out.println(document);

       }

    }

これにより、目的のWebページが正しく取得されます。

28

私にとっての問題は、viewstate、eventvalidation、viewstategeneratorの値を送信しなかったことです。

これらの値を取得するには、最初にGETリクエストをログインフォームページに送信する必要があります。私のインスタンスでは、これはdefault.aspxページでした。

次に、これらの値を抽出して変数に入れる必要があります。もちろん、フォームのログインIDとパスワードフィールドID、送信ボタンのIDなども必要です。送信されるすべての変数のリストについては、手動でログインし、chrome devツール(要素の検査)を使用して、POST=その中には、送信したユーザー名とパスワードが表示され、送信された他の変数が表示されます。

開発ツールの例のネットワークタブ

次に、これらすべての変数を含むPOSTリクエストを送信し、レスポンスからのCookieを変数に保存します。これを使用して、別のページに移動できます。

コード:

import Java.io.IOException;
import Java.util.Map;
import org.jsoup.Connection;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.nodes.FormElement;


public class get_example {

public static void main(String[] args) throws IOException {
    //===================================
    Connection.Response response2 = Jsoup.connect("yourloginpage")
            .method(Connection.Method.GET)
            .execute();

    Document responseDocument = response2.parse();

    Element eventValidation = responseDocument.select("input[name=__EVENTVALIDATION]").first();
    Element viewState = responseDocument.select("input[name=__VIEWSTATE]").first();
    Element viewStateGen = responseDocument.select("input[name=__VIEWSTATEGENERATOR]").first();



    Connection.Response response = Jsoup.connect("yourloginpage")
            .method(Connection.Method.POST)
            .data("ctl00$plnMain$txtLogin", "username")
            .data("ctl00$plnMain$txtPassword", "password")
            .data("ctl00$plnMain$Submit1", "Log In")
            .data("ctl00$ucCopyright$hdnPrivacyStatement", "Privacy Statement")
            .data("ctl00$ucCopyright$hdnTermsOfUse", "Terms of Use")
            .data("__VIEWSTATE", viewState.attr("value"))
            .data("__VIEWSTATEGENERATOR", viewStateGen.attr("value"))
            .data("__EVENTVALIDATION", eventValidation.attr("value"))
            .execute();


    Map<String, String> cookies = response.cookies();


    Document homePage = Jsoup.connect("anotherpage")
            .cookies(cookies)
            .get();


    System.out.println(homePage.body().html());

}
}
2
Rajon Ali

私の場合、次の3つの手順で構成されています。

  1. ログインフォームページからCookieを取得します。
  2. ログインフォームに資格情報を投稿action= URL、Cookieを更新します。
  3. ユーザーはインデックスページにリダイレクトされます。ここでは解析せず、Responseを最終ターゲットURLに送信するだけです。
  4. 最終ページに到達したら解析します。

Cookieはすべてのステップで更新する必要があり、場合によってはエントリを追加し、場合によってはクリアしてリセットする必要があります。 Internet Explorer/Chrome/Firefox Devツール(F12)、[ネットワーク]パネルのcookies部分。

0
WesternGun