>  기사  >  Java  >  내 HttpURLConnection 요청에서 헤더가 인식되지 않는 이유는 무엇입니까?

내 HttpURLConnection 요청에서 헤더가 인식되지 않는 이유는 무엇입니까?

Mary-Kate Olsen
Mary-Kate Olsen원래의
2024-11-09 01:22:02867검색

Why are Headers Not Being Recognized in My HttpURLConnection Requests?

HttpURLConnection 요청에 헤더 추가

HttpURLConnection 요청에 헤더를 추가하려고 하면 서버가 해당 요청을 인식하지 못하는 상황이 발생할 수 있습니다. 헤더 정보. setRequestProperty()를 사용하여 요청 속성을 설정해도 문제가 해결되지 않으면 다음 해결 방법을 고려하십시오.

해결 방법:

헤더가 올바르게 설정되었는지 확인하려면 다음을 시도해 보세요. 다음 단계:

  1. 새 인스턴스를 생성합니다. HttpURLConnection:

    URL myURL = new URL(serviceURL);
    HttpURLConnection myURLConnection = (HttpURLConnection)myURL.openConnection();
  2. 헤더 값 준비:

    String userCredentials = "username:password";
    String basicAuth = "Basic " + new String(Base64.getEncoder().encode(userCredentials.getBytes()));
  3. 설정 "인증" 헤더:

    myURLConnection.setRequestProperty ("Authorization", basicAuth);
  4. 연결 구성:

    myURLConnection.setRequestMethod("POST"); // Assuming a POST request
    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);

이 수정된 접근 방식은 다음을 보장해야 합니다. "Authorization" 헤더가 요청에 올바르게 추가되었으며 서버에서 이를 수신해야 합니다.

위 내용은 내 HttpURLConnection 요청에서 헤더가 인식되지 않는 이유는 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.