program story

2xx 이외의 코드가 반환 될 때 HttpURLConnection을 사용하여 응답 본문을 얻는 방법은 무엇입니까?

inputbox 2020. 10. 7. 07:36
반응형

2xx 이외의 코드가 반환 될 때 HttpURLConnection을 사용하여 응답 본문을 얻는 방법은 무엇입니까?


서버가 오류를 반환하는 경우 Json 응답을 검색하는 데 문제가 있습니다. 아래 세부 정보를 참조하세요.

요청을 수행하는 방법

나는 java.net.HttpURLConnection. 요청 속성을 설정 한 다음 다음을 수행합니다.

conn = (HttpURLConnection) url.openConnection();

그 후 요청이 성공하면 응답 Json을 얻습니다.

br = new BufferedReader(new InputStreamReader((conn.getInputStream())));
sb = new StringBuilder();
String output;
while ((output = br.readLine()) != null) {
  sb.append(output);
}
return sb.toString();

... 문제는 다음과 같습니다.

서버가 50x 또는 40x와 같은 오류를 반환 할 때받은 Json을 검색 할 수 없습니다. 다음 줄은 IOException을 발생시킵니다.

br = new BufferedReader(new InputStreamReader((conn.getInputStream())));
// throws java.io.IOException: Server returned HTTP response code: 401 for URL: www.example.com

서버는 확실히 본문을 보냅니다. 외부 도구 Burp Suite에서 확인합니다.

HTTP/1.1 401 Unauthorized

{"type":"AuthApiException","message":"AuthApiException","errors":[{"field":"email","message":"Invalid username and/or password."}]}

다음 방법을 사용하여 응답 메시지 (예 : "내부 서버 오류") 및 코드 (예 : "500")를 얻을 수 있습니다.

conn.getResponseMessage();
conn.getResponseCode();

하지만 요청 본문을 검색 할 수 없습니다. 라이브러리에서 알아 차리지 못한 메서드가있을 수 있습니까?


응답 코드가 200가 2xx없는 경우, 사용 getErrorStream()대신에getInputStream().


명확하게하기 위해 내 작업 코드는 다음과 같습니다.

if (200 <= conn.getResponseCode() && conn.getResponseCode() <= 299) {
    br = new BufferedReader(new InputStreamReader(conn.getInputStream()));
} else {
    br = new BufferedReader(new InputStreamReader(conn.getErrorStream()));
}

참고 URL : https://stackoverflow.com/questions/25011927/how-to-get-response-body-using-httpurlconnection-when-code-other-than-2xx-is-re

반응형