如何通过自定义标头将发布请求发送至github API上的运行检查?

时间:2019-04-19 04:04:05

标签: java spring-boot github-api

阅读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);

有关信息,我在邮递员上使用了相同的标题。

0 个答案:

没有答案