사용하여 요청에 헤더를 추가하려고하는데 HttpUrlConnection메소드 setRequestProperty()가 작동하지 않는 것 같습니다. 서버 측에서 헤더와 함께 요청을받지 못했습니다.
HttpURLConnection hc;
    try {
        String authorization = "";
        URL address = new URL(url);
        hc = (HttpURLConnection) address.openConnection();
        hc.setDoOutput(true);
        hc.setDoInput(true);
        hc.setUseCaches(false);
        if (username != null && password != null) {
            authorization = username + ":" + password;
        }
        if (authorization != null) {
            byte[] encodedBytes;
            encodedBytes = Base64.encode(authorization.getBytes(), 0);
            authorization = "Basic " + encodedBytes;
            hc.setRequestProperty("Authorization", authorization);
        }
답변
과거에 다음 코드를 사용했으며 TomCat에서 활성화 된 기본 인증으로 작동했습니다.
URL myURL = new URL(serviceURL);
HttpURLConnection myURLConnection = (HttpURLConnection)myURL.openConnection();
String userCredentials = "username:password";
String basicAuth = "Basic " + new String(Base64.getEncoder().encode(userCredentials.getBytes()));
myURLConnection.setRequestProperty ("Authorization", basicAuth);
myURLConnection.setRequestMethod("POST");
myURLConnection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
myURLConnection.setRequestProperty("Content-Length", "" + postData.getBytes().length);
myURLConnection.setRequestProperty("Content-Language", "en-US");
myURLConnection.setUseCaches(false);
myURLConnection.setDoInput(true);
myURLConnection.setDoOutput(true);
위 코드를 사용해보십시오. 위 코드는 POST 용이며 GET 용으로 수정할 수 있습니다
답변
나는 위의 답변에서 정보의이 비트가 표시되지 않습니다 그냥 원인 때문에, 코드가 원래 제대로 작동하지 않습니다 게시 니펫 이유는 encodedBytes변수가 있습니다 byte[]아닌 String값. 아래 byte[]에 a 를 전달하면 new String()코드 스 니펫이 완벽하게 작동합니다.
encodedBytes = Base64.encode(authorization.getBytes(), 0);
authorization = "Basic " + new String(encodedBytes);
답변
Java 8을 사용하는 경우 아래 코드를 사용하십시오.
URLConnection connection = url.openConnection();
HttpURLConnection httpConn = (HttpURLConnection) connection;
String basicAuth = Base64.getEncoder().encodeToString((username+":"+password).getBytes(StandardCharsets.UTF_8));
httpConn.setRequestProperty ("Authorization", "Basic "+basicAuth);
답변
마침내 이것은 나를 위해 일했다.
private String buildBasicAuthorizationString(String username, String password) {
    String credentials = username + ":" + password;
    return "Basic " + new String(Base64.encode(credentials.getBytes(), Base64.DEFAULT));
}
답변
코드는 괜찮습니다. 이런 식으로 같은 것을 사용할 수도 있습니다.
public static String getResponseFromJsonURL(String url) {
    String jsonResponse = null;
    if (CommonUtility.isNotEmpty(url)) {
        try {
            /************** For getting response from HTTP URL start ***************/
            URL object = new URL(url);
            HttpURLConnection connection = (HttpURLConnection) object
                    .openConnection();
            // int timeOut = connection.getReadTimeout();
            connection.setReadTimeout(60 * 1000);
            connection.setConnectTimeout(60 * 1000);
            String authorization="xyz:xyz$123";
            String encodedAuth="Basic "+Base64.encode(authorization.getBytes());
            connection.setRequestProperty("Authorization", encodedAuth);
            int responseCode = connection.getResponseCode();
            //String responseMsg = connection.getResponseMessage();
            if (responseCode == 200) {
                InputStream inputStr = connection.getInputStream();
                String encoding = connection.getContentEncoding() == null ? "UTF-8"
                        : connection.getContentEncoding();
                jsonResponse = IOUtils.toString(inputStr, encoding);
                /************** For getting response from HTTP URL end ***************/
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    return jsonResponse;
}
인증이 성공하면 리턴 응답 코드 200
답변
RestAssurd 를 사용 하면 다음을 수행 할 수도 있습니다.
String path = baseApiUrl; //This is the base url of the API tested
    URL url = new URL(path);
    given(). //Rest Assured syntax 
            contentType("application/json"). //API content type
            given().header("headerName", "headerValue"). //Some API contains headers to run with the API 
            when().
            get(url).
            then().
            statusCode(200); //Assert that the response is 200 - OK
답변
1 단계 : HttpURLConnection 객체 가져 오기
URL url = new URL(urlToConnect);
HttpURLConnection httpUrlConnection = (HttpURLConnection) url.openConnection();
2 단계 : setRequestProperty 메소드를 사용하여 HttpURLConnection에 헤더를 추가하십시오.
Map<String, String> headers = new HashMap<>();
headers.put("X-CSRF-Token", "fetch");
headers.put("content-type", "application/json");
for (String headerKey : headers.keySet()) {
    httpUrlConnection.setRequestProperty(headerKey, headers.get(headerKey));
}
참조 링크
