...
코드 블럭 | ||||
---|---|---|---|---|
| ||||
RestTemplate restTemplate = new RestTemplate(); restTemplate.getInterceptors().add(new BasicAuthorizationInterceptor("username", "password")); |
Apache Apache HttpClient에서 Basic Authentication을 사용하려면 https://www.baeldung.com/httpclient-4-basic-authentication을 참고하십시오.
...