阅读Github的API,它需要一个自定义标头:“ vnd.github.antiope-preview + json”;使用弹簧靴。
尽管github API页面中提到了我总是得到415不支持的媒体类型。
HttpHeaders headers = new headers.setAccept(Collections.singletonList(new MediaType("application","vnd.github.antiope-preview+json")));
headers.setContentType();
HttpEntity<String> entity = new HttpEntity<>(str,headers);
restTemplate.exchange(url, HttpMethod.POST, entity, String.class);
有关信息,我在邮递员上使用了相同的标题。