0

在我的 Android 应用程序上,我使用 JSOUP 来 POST 数据来模拟登录表单的提交操作(自动登录到 WISPR 热点)这是我从 POST 获得的原始响应:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://
www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>connexion</title>
        <script type="text/javascript">
                    window.location = "http://192.168.2.1:3990/logon?username=0325767676@ssowifi.neuf.fr&amp;response=e30ee504ba06fa77502f1b9e8ccbaf8d&amp;uamip=192.168.2.1&userurl=http%3A%2F%2Fwww.sfr.fr%3Bneuf%3Bfr%3B3%3Bhttp%3A%2F%2Fwww.sfr.fr%3B";
        </script>
    </head>
    <body>
    </body>
</html>

我将它与登录成功时使用 Firebug 的桌面浏览器得到的响应进行了比较,它完全一样,当然除了“响应”参数。

如您所见,在这里,它使用 Javascript 进行重定向。由于 JSOUP 仅遵循 3xx 重定向,因此我尝试从响应中解析给定的位置 URL,然后在其上执行 GET 请求

Document doc = Jsoup.connect(parsedRedirectURL).cookies(cookies).get();

但我得到一个

Java.net.SocketTimeoutException: failed to connect to /192.168.2.1 (port 3390) after 3000ms

我错过了什么?

4

1 回答 1

1

你的window.location:3990和你的例外3390。这些参数是否来自两次调用,因此端口可能已更改?否则检查,如果你确实使用了正确的端口。

于 2012-12-23T16:14:57.963 回答