0

デスクトップ アプリケーションから Trac にコメントを投稿しようとしています。

私はこのプロジェクトでApache httpクライアントライブラリを使用しています ここにリンクがあります

これが私のコードです。読みにくい場合は申し訳ありません

public class TestComment {

    private static String cookie;

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


        CookieHandler.setDefault(new CookieManager());
        DefaultHttpClient defaultHttpClient = new DefaultHttpClient();
        HttpGet httpGet = new HttpGet("http://localhost:8080/mytrac/login");
        BasicHeader authHeader = new BasicHeader("Authorization", "Basic " + encodedPassword("admin", "123123"));
        httpGet.addHeader(authHeader);
        HttpResponse response = defaultHttpClient.execute(httpGet);

        List<Cookie> cookies = defaultHttpClient.getCookieStore().getCookies();

        String token = null;
        if(!cookies.isEmpty()){
            for (int i = 0; i < cookies.size(); i++) {
                System.out.println("- " + cookies.get(i).toString());
                token = cookies.get(i).toString().substring(43, 67);
                System.out.println(token);
            }
        }

        setCookie(token);

        responseLog(response);

        HttpPost httpPost = new HttpPost("http://localhost:8080/mytrac/ticket/2#comment:5");

        httpPost.setHeader(authHeader);

        httpPost.setHeader("Host", "localhost:8080");
        httpPost.setHeader("User-Agent", "Mozilla/5.0");
        httpPost.setHeader("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8");
        httpPost.setHeader("Accept-Language", "en-US,en;q=0.8");
        httpPost.setHeader("Connection", "keep-alive");
        httpPost.setHeader("Referer", "http://localhost:8080/mytrac/ticket/2");
        httpPost.setHeader("Content-Type", "application/x-www-form-urlencoded; charset=UTF-8");


        List<NameValuePair> formparams = new ArrayList<NameValuePair>();
        formparams.add(new BasicNameValuePair("__FORM_TOKEN", token));
        formparams.add(new BasicNameValuePair("comment", "Test comment"));
        formparams.add(new BasicNameValuePair("field_reporter", "admin"));



        httpPost.setEntity(new UrlEncodedFormEntity(formparams));

        response = defaultHttpClient.execute(httpPost);
        responseLog(response);

        System.out.println(response.getStatusLine());


    }

    private static String encodedPassword(String username, String password) {

        byte[] encodedPassword = (username + ":" + password).getBytes();
        BASE64Encoder base64Encoder = new BASE64Encoder();

        return base64Encoder.encode(encodedPassword);
    }

   private static void responseLog(org.apache.http.HttpResponse httpResponse) throws IOException {

       BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(httpResponse. getEntity().getContent()));

       StringBuffer stringBuffer = new StringBuffer();
       String line1;

       while ((line1 = bufferedReader.readLine()) != null) {
           stringBuffer.append(line1 + "\n");
       }

       System.out.println(stringBuffer) ;
   }

    public static String getCookie() {
        cookie = cookie.substring(cookie.indexOf(":") + 1);
        return cookie;
    }

    public static void setCookie(String cookie) {
        TestComment.cookie = cookie;
    }
}

このコードを実行すると、200 個のコードが表示され、OK と表示され、Text-Aria 形式でコメントを取得することもできますが、投稿しないでください。ブラウザーにコメントを投稿すると、コードは 303 です。どこが間違っているのでしょうか。完全に間違っているのでしょうか?

4

1 に答える 1

0

問題を解決しました

知りませんでしたが、もう 1 つフォームを送信する必要がありました。trac から表示時間を取得して、フォームとして送信する必要があります。

formparams.add(new BasicNameValuePair("view_time", view_time));

今それは動作します

于 2013-07-23T11:34:19.837 に答える