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