我有以下 OAuth2RestTempate 配置用于密码授予类型实现,我正在实例化 bean:
@Bean
public OAuth2RestTemplate oAuth2RestTemplate() {
ResourceOwnerPasswordResourceDetails details = new ResourceOwnerPasswordResourceDetails();
details.setAccessTokenUri(this.tokenUrl);
details.setClientId(this.consumerKey);
details.setClientSecret(this.consumerSecret);
details.setGrantType("password");
details.setUsername(this.username);
details.setPassword(this.password);
details.setClientAuthenticationScheme(AuthenticationScheme.form);
OAuth2RestTemplate oAuth2RestTemplate = new OAuth2RestTemplate(details);
oAuth2RestTemplate.setRequestFactory(new HttpComponentsClientHttpRequestFactory());
return oAuth2RestTemplate;
由于 OAuth2RestTemplate 已被弃用,我试图用 Spring Boot WebClient 替换它以执行相同的操作,但似乎没有一种简单的方法可以做到这一点。任何线索表示赞赏。