Spring Cloud Feign with OAuth2RestTemplate
问题 I'm trying to implement Feign Clients to get my user info from the user's service, currently I'm requesting with oAuth2RestTemplate, it works. But now I wish to change to Feign, but I'm getting error code 401 probably because it doesn't carry the user tokens, so there is a way to customize, if Spring support for Feign is using, a RestTemplate so I can use my own Bean? Today I'm implementing in this way The service the client @Retryable({RestClientException.class, TimeoutException.class,