2

次のリクエストを生成するには、Java プログラムが必要です。Apache HttpClient ライブラリを使用していますが、次のようなリクエストを生成できません。

これは、私の python プログラムが生成するものであり、同等の Java プログラムを作成しました。しかし、そのスローは403です。

2012-09-10 15:12:05G INFO: G2OAuth 認証データ = "3, 0.0.0.0, 0.0.0.0, 1347289925, 3223833979, crlakamai" 2012-09-10 15:12:05G INFO: G2OAuth サイン文字列 = " 3、0.0.0.0、0.0.0.0、1347289925、3223833979、akamai/182228\nx-akamai-acs-action:version=1&action=dir&format=xml\n"

   send: 'POST /182228 HTTP/1.1\r\nHost: crl.api.akamailab.com\r\nAccept-Encoding: identity\r\nX-Akamai-ACS-Auth-Data: 3, 0.0.0.0, 0.0.0.0, 1347289925, 3223833979, crlsymc\r\nX-Akamai-ACS-Auth-Sign: eFnWtJBIyj4rxV3V0axF3w==\r\nX-Akamai-ACS-Action: version=1&action=dir&format=xml\r\n\r\n'

reply: 'HTTP/1.1 200 OK\r\n'
header: Server: Apache
header: Content-Type: text/html
header: Date: Mon, 10 Sep 2012 15:12:09 GMT
header: Content-Length: 31
header: Connection: keep-alive

応答は次のようになります。

<?xml version="1.0" encoding="ISO-8859-1"?>
<stat directory="/182232">
        <file type="file" name="log4j.properties" mtime="1346780907" size="301" md5="c92268157f1732a05c2027d151fc539a"/>
</stat>

ここに私のJavaコードがあります:

    final HttpHost targetHost = new HttpHost("a.host.com", 80, "http");
    final DefaultHttpClient httpClient = new DefaultHttpClient();
    final Credentials credentials = new UsernamePasswordCredentials("user","pass");
    httpClient.getCredentialsProvider().setCredentials(new AuthScope(targetHost.getHostName(), targetHost.getPort()), credentials);


    final HttpPost httpPostRequest = new HttpPost("akamai/182232");

    //Add your Data
    final List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(6);
    nameValuePairs.add(new BasicNameValuePair("Host: ", "a.host.com");
    nameValuePairs.add(new BasicNameValuePair("Accept-Encoding: ", "identity"));
    nameValuePairs.add(new BasicNameValuePair("Content-Length: ", "6"));

    httpPostRequest.setEntity(new UrlEncodedFormEntity(nameValuePairs));

    final HttpResponse response = httpClient.execute(targetHost, httpPostRequest);

    if (response.getStatusLine().getStatusCode() != 200) {
        throw new RuntimeException("Failed : HTTP error code : " + response.getStatusLine().getStatusCode());
    }

私の応答は次のようになります。

2012-09-10 11:31:22,600 DEBUG [wire] >> "POST /182228/a.crl HTTP/1.1[\r][\n]"
2012-09-10 11:31:22,601 DEBUG [wire] >> "Content-Length: 394[\r][\n]"
2012-09-10 11:31:22,601 DEBUG [wire] >> "Content-Type: application/x-www-form-urlencoded; charset=ISO-8859-1[\r][\n]"
2012-09-10 11:31:22,601 DEBUG [wire] >> "Host: crl.api.symclab.com:80[\r][\n]"
2012-09-10 11:31:22,601 DEBUG [wire] >> "Connection: Keep-Alive[\r][\n]"
2012-09-10 11:31:22,601 DEBUG [wire] >> "User-Agent: Apache-HttpClient/4.1.3 (java 1.5)[\r][\n]"
2012-09-10 11:31:22,602 DEBUG [wire] >> "[\r][\n]"

投稿の一部として別のヘッダーを Accept-Encoding したいのですが、どうすれば追加できますか? httpヘッダーではなく、投稿リクエストの一部である必要があります。

4

2 に答える 2

8

Accept-Encoding は、誤って POST パラメーターとして送信したパラメーターに加えて、HTTP ヘッダーの一部です。

HTTP クライアントを使用して送信する方法は次のとおりです。

httpPostRequest.setHeader("Content-Length", "6"); 
httpPostRequest.setHeader("Accept-Encoding", "identity"); 
httpPostRequest.setHeader("Host", "a.host.com");
于 2012-09-10T21:03:12.790 に答える