so when a user(client) sends the request through gateway it goes to the secured service which also calls another service which is secured in its call. iv set up the security by oauth and using feign interface to send calls to this service and need to add a header which includes the access token. I tried many ways but all the classes there seem to be deprecated. pls help me
@Component
@Data
public class UserContextFeignInterceptor implements RequestInterceptor { //adds interceptor to feign clients
@Override
public void apply(RequestTemplate template) {
template.header("tmx-correlation-id", UserContextHolder.getContext().getCorrelationId());
template.header("tmx-auth-token", UserContextHolder.getContext().getAuthToken());
template.header("tmx-user-id", UserContextHolder.getContext().getUserId());
template.header("tmx-organization-id", UserContextHolder.getContext().getOrganizationId());
template.header("Authentication",);
}
}
@FeignClient(name = "organization-service", configuration = FeignConfiguration.class) //add the config of which interceptor to use
public interface OrganizationFeignClient {
@LoadBalanced//spring cloud load balancer(client side)
@GetMapping("v1/organization/{organizationId}")
Organization getOrganization(@PathVariable("organizationId") String organizationId);
}
in this how do i add the current access token and what about if the call is schedules and token expires?
I have a complete working sample in this project.
The important points are to use:
RequestInterceptor
(to automatically add the authorization header)OAuth2AuthorizedClientRepository
inside this interceptor to get a valid token.Sample in a servlet application:
This sample illustrates the case where the request should be done on behalf of current user. See doc for other kind of authorization, for instance if you have declared registrations with
client_credentials
in properties for the service to send a scheduled request in its own name (with the user subject or whatever as parameter).In Spring Boot apps with
@EnableFeignClients
, request interceptors decorated with@Component
(and in the same or sub package of the app) are auto-detected: no need for explicit conf.