jsoup 으로 json, xml 결과 페이지를 호출하면
Unhandled content type. Must be text/*, application/xml, or application/*+xml
오류가 발생함
해결방법은
.ignoreContentType(true) 설정하면 됨
Jsoup.connect("/test.json")
.ignoreContentType(true)
.method(Method.GET)
.execute();
혹은 header에 ContentType 을 json이나 xml 로 지정해도 될 듯.
끝.
반응형