我正在使用基于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相同的方法工作正常,使用基本身份验证时相同的请求也没问题。可能是什么问题?