JSON에서 HTTP 415 지원되지 않는 미디어 유형 오류


115

JSON 요청으로 REST 서비스를 호출하고 있는데 HTTP 415 "Unsupported Media Type"오류로 응답합니다 .

요청 콘텐츠 유형은로 설정됩니다 ("Content-Type", "application/json; charset=utf8").

요청에 JSON 개체를 포함하지 않으면 제대로 작동합니다. google-gson-2.2.4JSON 용 라이브러리를 사용하고 있습니다.

몇 가지 다른 라이브러리를 사용해 보았지만 아무런 차이가 없었습니다.

아무도이 문제를 해결하도록 도와 주시겠습니까?

내 코드는 다음과 같습니다.

public static void main(String[] args) throws Exception
{

    JsonObject requestJson = new JsonObject();
    String url = "xxx";

    //method call for generating json

    requestJson = generateJSON();
    URL myurl = new URL(url);
    HttpURLConnection con = (HttpURLConnection)myurl.openConnection();
    con.setDoOutput(true);
    con.setDoInput(true);

    con.setRequestProperty("Content-Type", "application/json; charset=utf8");
    con.setRequestProperty("Accept", "application/json");
    con.setRequestProperty("Method", "POST");
    OutputStream os = con.getOutputStream();
    os.write(requestJson.toString().getBytes("UTF-8"));
    os.close();


    StringBuilder sb = new StringBuilder();  
    int HttpResult =con.getResponseCode();
    if(HttpResult ==HttpURLConnection.HTTP_OK){
    BufferedReader br = new BufferedReader(new   InputStreamReader(con.getInputStream(),"utf-8"));  

        String line = null;
        while ((line = br.readLine()) != null) {  
        sb.append(line + "\n");  
        }
         br.close(); 
         System.out.println(""+sb.toString());  

    }else{
        System.out.println(con.getResponseCode());
        System.out.println(con.getResponseMessage());  
    }  

}
public static JsonObject generateJSON () throws MalformedURLException

{
   String s = "http://www.example.com";
        s.replaceAll("/", "\\/");
    JsonObject reqparam=new JsonObject();
    reqparam.addProperty("type", "arl");
    reqparam.addProperty("action", "remove");
    reqparam.addProperty("domain", "staging");
    reqparam.addProperty("objects", s);
    return reqparam;

}
}

의 값 requestJson.toString()은 다음과 같습니다.

{"type":"arl","action":"remove","domain":"staging","objects":"http://www.example.com"}


의 값을 귀하의 질문에 업데이트하시기 바랍니다requestJson.toString()
Sabuj 하산

1
requestJson.toString의 값 : { "type": "arl", "action": "remove", "domain": "staging", "objects": " abc.com "}
user3443794

서버 부분을 작성 했습니까? Postman (Chrome 확장 프로그램, Google it)에서 동일한 요청을 수행하면 작동합니까? 서버가 어떤 이유로 JSON 콘텐츠 유형을 허용하지 않을 수 있습니까?
joscarsson

예, soapUI를 사용하여 테스트했습니다. json을 포함하여 똑같은 요청을 보냈고 서버에서 성공적인 응답을 받았습니다.
user3443794

@joscarsson, 2017 년 3 월 14 일부터 Postman 크롬 확장 프로그램은 더 이상 사용되지 않습니다. 그들은 네이티브 앱으로 이동했습니다. 여기에 자신의 블로그 게시물은 다음과 같습니다 http://blog.getpostman.com/2017/03/14/going-native/
서지 Kishiko

답변:


81

이유는 확실하지 않지만 줄 charset=utf8을 제거 con.setRequestProperty("Content-Type", "application/json; charset=utf8")하면 문제 가 해결되었습니다.


ReST 서비스의 버그 일 수 있습니다. charsetContent-Type에서 설정 될 것으로 예상되지 않을 수 있습니다. 내 생각 엔 그들이 문자열인지 확인하고 있다는 것 "application/json; charset=utf-8" == "application/json"입니다. 즉, JSON은 utf-8이어야하므로 문자 세트를 생략하는 것이 완벽하게 유효합니다.
Tim Martin

20
때문에이 charset=utf8유효한 문자 집합을 지정하지 않습니다. 올바른 버전은 charset=utf-8. 대시가 중요합니다. 유효한 문자 집합 지정 목록은 IANA RFC2879에 의해 관리됩니다 : iana.org/assignments/character-sets/character-sets.xhtml
Berin Loritsch을

다른 일을 시도하는 데 많은 시간을 낭비한 다음 charset = utf8을 제거하려고 시도했지만 작동했습니다. 감사.
Salman

53

추가 Content-Type: application/jsonAccept:application/json


1
테스트를 위해 Postman 을 사용하는 경우이 부분을 Headers : Content-Type : application / json
Z3d4s

13

charset=utf8뒤에 공백이 없어야 하기 때문 application/json입니다. 잘 작동합니다. 그것을 사용하십시오application/json;charset=utf-8


이것은 올바르지 않습니다. 공백이 허용되며 무시해야합니다. tools.ietf.org/html/rfc2046을 참조 하세요 .
djb

11

jquery ajax 요청을하는 경우 추가하는 것을 잊지 마십시오.

contentType:'application/json'

4

사용하는 경우 AJAX jQueryRequest 신청해야합니다. 그렇지 않으면 415오류가 발생합니다.

dataType: "json",
contentType:'application/json'

2

HTTP 헤더 관리자를 추가하고 API의 헤더 이름과 값을 추가합니다. 예 : 콘텐츠 유형, 수락 등. 그러면 문제가 해결됩니다.


2

React RSAA 미들웨어 또는 이와 유사한 경우에 헤더를 추가하십시오.

  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
  },
  body: JSON.stringify(model),


1

Request컨트롤러가받는 클래스를 업데이트하여이 문제를 해결했습니다 .

나는 제거 내에서 다음 클래스 수준 주석 Request내 서버 측에서 클래스를. 그 후 내 고객 은 415 오류를 얻지 못했습니다.

import javax.xml.bind.annotation.XmlRootElement;
@XmlRootElement

1

415 (Unsupported Media Type) 상태 코드는 페이로드가 대상 리소스에서이 메서드가 지원하지 않는 형식이기 때문에 원본 서버가 요청 서비스를 거부하고 있음을 나타냅니다. 형식 문제는 요청에 표시된 Content-Type 또는 Content-Encoding 때문이거나 데이터를 직접 검사 한 결과 일 수 있습니다. 문서


0

"삭제"나머지 요청을 보냈는데 415로 실패했습니다. 내 서버가 API에 도달하는 데 사용하는 콘텐츠 유형을 확인했습니다. 제 경우에는 "application / json; charset = utf8"대신 "application / json"이었습니다.

그러니 API 개발자에게 물어보고 그동안 content-type = "application / json"으로 만 요청을 보내십시오.


0

나는 같은 문제가 있었다. 내 문제는 직렬화에 대한 복잡한 개체였습니다. 내 개체의 속성 중 하나는 Map<Object1, List<Object2>>. 나는이 속성을 List<Object3>어디에 Object3포함 하고 모든 것이 잘 작동하는지 Object1와 같이 변경했습니다 Object2.


0

나는 이것이 그의 문제로 OP를 돕기에는 너무 늦었다는 것을 알고 있지만,이 문제에 직면 한 우리 모두에게 json 데이터를 보유하기위한 클래스의 매개 변수로 생성자를 제거 하여이 문제를 해결했습니다.


0

구성에 MappingJackson2HttpMessageConverter를 수동으로 추가하면 문제가 해결되었습니다.

@EnableWebMvc
@Configuration
@ComponentScan
public class RestConfiguration extends WebMvcConfigurerAdapter {

    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> messageConverters) {
        messageConverters.add(new MappingJackson2HttpMessageConverter());
        super.configureMessageConverters(messageConverters);
    }
}

0

그 이유는 디스패처 서블릿 xml 파일에 "주석 기반"을 추가하지 않았기 때문일 수 있습니다. 또한 헤더에 application / json으로 추가되지 않았기 때문일 수도 있습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.