Android DefaultHTTPClient在javascript驱动的网站上通过Post请求填写表单

时间:2011-06-02 03:23:51

标签: java javascript android httpclient http-post

我的问题与此类似: HTTPclient POST with problematic web site

我使用篡改数据查找通过客户端和服务器的所有请求。

我最初执行get请求来加载页面并获取动态生成的字段值。然后,我为相关表单的所有输入字段创建了命名值对的列表,并执行了post req,但是它将我重定向到错误页面。

我尝试在stackoverflow上建议的所有可能方式设置cookie和处理sslfactory:

但它不适合我。

我不知道是什么问题,我甚至没有在日志中出现任何错误。 我在这个问题上花了几天时间。

1 个答案:

答案 0 :(得分:3)

解决方案使用相同的 HttpClient ,无需维护cookie或其他任何内容。 首先找到使用篡改数据进行的所有请求(获取或发布)。然后提取动态生成的隐藏字段值:

public static String getPage(String sURL) throws HttpException {
    HttpGet method = new HttpGet(sURL);

    // method.getParams().setParameter(HttpMethodParams.RETRY_HANDLER,
    // new DefaultHttpMethodRetryHandler(3, false));

    try {
        /*
        * int statusCode = client.execute(method); if (statusCode !=
        * HttpStatus.SC_OK) { System.err.println("Method failed: " +
        * method.getStatusLine()); }
        */HttpResponse res;
        res = client.execute(method);

        BasicResponseHandler myHandler = new BasicResponseHandler();
        String content = myHandler.handleResponse(res);
        //extract dynamic parameters here
        return content;
    } catch(...) {

    }
}

然后用于后期使用此方法:

public static String postPage1(list of parameters to be passed in the post form) throws HttpException {
    BasicNameValuePair[] data = {
        new BasicNameValuePair("field name", "param1"),
        ......
    };
    HttpPost post = new HttpPost(sURL);

    // post.setRequestBody(data);
    try {
        post.setEntity(new UrlEncodedFormEntity(Arrays.asList(data)));

        HttpResponse res;
        res = client.execute(post);
        int statusCode;

        BasicResponseHandler myHandler = new BasicResponseHandler();
        String content = myHandler.handleResponse(res);
        return content;
    } catch (...) {

    }
}

就是这样。