RestTemplate设置token
时间: 2023-11-14 17:06:57 浏览: 80
SpringBoot中RestTemplate和WebClient的使用区别及优缺点含完整代码
要在 RestTemplate 中设置 token,需要在 HTTP 请求头中添加 Authorization 字段,将 token 值作为其值传递。代码示例如下:
```
RestTemplate restTemplate = new RestTemplate();
HttpHeaders headers = new HttpHeaders();
headers.setBearerAuth("your_token_here");
HttpEntity<String> entity = new HttpEntity<>("body", headers);
ResponseEntity<String> response = restTemplate.exchange("url", HttpMethod.GET, entity, String.class);
```
其中 `setBearerAuth()` 方法将 token 设置为 Bearer token。
阅读全文