にカール-Xポストを変換するために、私は(ApacheのHttpClientを4.xを使用して)は、Javaにcurlコマンドを翻訳しようとしています:どのようにJavaの
export APPLICATION_ID=SOME_ID
export REST_API_KEY=SOME_KEY
curl -i -X POST \
-H "X-Parse-Application-Id: ${APPLICATION_ID}" \
-H "X-Parse-REST-API-Key: ${REST_API_KEY}" \
-H "Content-Type: image/png" \
--data-binary @/Users/thomas/Desktop/greep-small.png \
https://api.parse.com/1/files/greep.png
が、私は次のエラーを取得:{ "エラー": "unauthorized"}。
これは私のJavaコードは次のようになります。
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpHost targetHost = new HttpHost("localhost", 80, "http");
httpclient.getCredentialsProvider().setCredentials(
new AuthScope(targetHost.getHostName(), targetHost.getPort()),
new UsernamePasswordCredentials("username", "password"));
HttpPost httpPost = new HttpPost("https://api.parse.com/1/files/greep.png");
System.out.println("executing request:\n" + httpPost.getRequestLine());
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("Example-Application-Id", "SOME_ID"));
nameValuePairs.add(new BasicNameValuePair("Example-REST-API-Key", "SOME_KEY"));
nameValuePairs.add(new BasicNameValuePair("Content-Type", "image/png"));
httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httpPost);
HttpEntity responseEntity = response.getEntity();
System.out.println("----------------------------------------");
System.out.println(response.getStatusLine());
if (responseEntity != null) {
System.out.println("Response content length: "
+ responseEntity.getContentLength());
}
System.out.println(EntityUtils.toString(responseEntity));
httpclient.getConnectionManager().shutdown();
どのように私は-Hおよび「--data-バイナリ」で始まるカール行で始まるカールラインを翻訳することができますか? -dのJavaに相当するものは何ですか?
-d '{ "name":"Andrew", "picture": { "name": "greep.png", "__type": "File" } }' \
いずれのヒントもありがとうございます。ありがとう
Runtime.getRuntime()。exec( "curl -i -X POST ...");抵抗することはできません、申し訳ありません:) –