jsonファイルをサーバーに送信した後、サーバーから確認応答を取得しようとしています。次の問題が何であるかわかりません。サーバーに接続しようとすると、常に 502 エラーが発生します。
助けてくれてありがとう!
HttpClient client = new DefaultHttpClient();
HttpPost post = new HttpPost("https://stage-api.e-signlive.com/aws/rest/services/codejam");
post.setHeader("Authorization", "Basic Y29kZWphbTpBRkxpdGw0TEEyQWQx");
post.setHeader("Content-Type", "application/json");
File file = new File("test.json");
try{
post.setEntity(new FileEntity(file, "application/json"));
HttpResponse response = client.execute(post);
BufferedReader rd = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));
String line = "";
while ((line = rd.readLine()) != null){
System.out.println(line);
}
//System.out.println(response.getStatusLine().getStatusCode());
}
catch (IOException e){
e.printStackTrace();
}