使用Spring RestTemplate获取GET 401

时间:2016-02-04 11:36:26

标签: spring spring-web

我正在使用基于cookie的身份验证为REST API编写客户端。

以下是代码:

HttpHeaders headers = new HttpHeaders();
headers.add("Cookie", auth_cookie);
HttpEntity<?> request = new HttpEntity<>(headers);
ResponseEntity<String> response = restTemplate.exchange(URL, HttpMethod.GET, request, String.class);

导致401 Unauthorized。

与POST相同的方法工作正常,使用基本身份验证时相同的请求也没问题。可能是什么问题?

0 个答案:

没有答案