Feign Request Interceptor 动态值
Feign Request Interceptor dynamic values
我是一些 API 的客户,我需要在每个请求中发送一个令牌,为了获得这个令牌,我需要访问 /auth/token
发送用户名和密码,并且想过用请求拦截器来解决。但是每个请求的用户名和密码都不同,有一些方法可以在假请求拦截器中使用动态值,或者在每次 API 调用之前我需要使用普通的假客户端调用 /auth/token
?
我有一个 Service
可以访问此令牌 API
@Service
@RequiredArgsConstructor
public class AuthService {
private final AuthClient client;
private final AuthProperties properties;
@Cacheable("tokens")
public AuthToken getToken(AuthUser user) {
return client.authenticate(properties.getClientId(), properties.getSecret(), user.getUser(),
user.getPassword());
}
}
假客户端访问令牌API
public interface AuthClient {
@RequestLine("GET /token?client_id={client_id}&client_secret={client_secret}&grant_type=password&username={username}&password={password}")
AuthToken authenticate(@Param("client_id") String client_id, @Param("client_secret") String client_secret,
@Param("username") String username, @Param("password") String password);
}
和一个使用此服务的RequestInterceptor
@RequiredArgsConstructor
public class AuthRequestInterceptor implements RequestInterceptor {
private final AuthUser user;
@Autowired
private final AuthService authService;
@Override
public void apply(RequestTemplate template) {
AuthToken token = authService.getToken(user);
template.header("Authorization", "Bearer " + token.getAccess_token());
}
}
我不确定在构建假客户端时如何添加这个拦截器来设置每个请求的用户
使用 Spring 时,您需要将 RequestInterceptor
注册为 @Bean
才能自动应用。如果您不使用 Spring,或手动构建 Feign 客户端,请使用 Feign.builder.interceptor()
方法注册拦截器。
为你的 Feign 添加一个拦截 bean @Configuration
class:
@Bean
public RequestInterceptor myInterceptor() {
return template -> {
// For example, add a header to an intercepted query:
template.header(
MY_HEADER_NAME,
MY_HEADER_VALUE);
};
}
我是一些 API 的客户,我需要在每个请求中发送一个令牌,为了获得这个令牌,我需要访问 /auth/token
发送用户名和密码,并且想过用请求拦截器来解决。但是每个请求的用户名和密码都不同,有一些方法可以在假请求拦截器中使用动态值,或者在每次 API 调用之前我需要使用普通的假客户端调用 /auth/token
?
我有一个 Service
可以访问此令牌 API
@Service
@RequiredArgsConstructor
public class AuthService {
private final AuthClient client;
private final AuthProperties properties;
@Cacheable("tokens")
public AuthToken getToken(AuthUser user) {
return client.authenticate(properties.getClientId(), properties.getSecret(), user.getUser(),
user.getPassword());
}
}
假客户端访问令牌API
public interface AuthClient {
@RequestLine("GET /token?client_id={client_id}&client_secret={client_secret}&grant_type=password&username={username}&password={password}")
AuthToken authenticate(@Param("client_id") String client_id, @Param("client_secret") String client_secret,
@Param("username") String username, @Param("password") String password);
}
和一个使用此服务的RequestInterceptor
@RequiredArgsConstructor
public class AuthRequestInterceptor implements RequestInterceptor {
private final AuthUser user;
@Autowired
private final AuthService authService;
@Override
public void apply(RequestTemplate template) {
AuthToken token = authService.getToken(user);
template.header("Authorization", "Bearer " + token.getAccess_token());
}
}
我不确定在构建假客户端时如何添加这个拦截器来设置每个请求的用户
使用 Spring 时,您需要将 RequestInterceptor
注册为 @Bean
才能自动应用。如果您不使用 Spring,或手动构建 Feign 客户端,请使用 Feign.builder.interceptor()
方法注册拦截器。
为你的 Feign 添加一个拦截 bean @Configuration
class:
@Bean
public RequestInterceptor myInterceptor() {
return template -> {
// For example, add a header to an intercepted query:
template.header(
MY_HEADER_NAME,
MY_HEADER_VALUE);
};
}