【发布时间】:2020-08-25 06:54:48
【问题描述】:
我正在尝试使用 Spring Boot OAuth 通过 Zoom (https://marketplace.zoom.us/docs/guides/auth/oauth) 对我的应用进行授权
我正在尝试打开页面(/zoom 端点)我的应用程序将我重定向到 Zoom。在这里,我正在进入缩放帐户,Spring 将我重定向到错误页面:
[missing_user_name_attribute] Missing required "user name" attribute name in UserInfoEndpoint for Client Registration: zoom
不知道如何处理它。这是我的代码
配置
@Configuration
public class SecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http.authorizeRequests().antMatchers("/", "/login**", "/error**").permitAll()
.anyRequest().authenticated()
.and().logout().logoutUrl("/logout").logoutSuccessUrl("/")
.and().oauth2Login();
}
@Bean
public ClientRegistrationRepository clientRegistrationRepository() {
List<ClientRegistration> registrations = new ArrayList<>();
registrations.add(zoomClientRegistration());
return new InMemoryClientRegistrationRepository(registrations);
}
private ClientRegistration zoomClientRegistration() {
return ClientRegistration.withRegistrationId("zoom")
.clientId(/**myClientId**/)
.clientSecret(/**{myClientSecret}**/)
.clientAuthenticationMethod(ClientAuthenticationMethod.BASIC)
.authorizationGrantType(AuthorizationGrantType.AUTHORIZATION_CODE)
.redirectUriTemplate("{baseUrl}/login/oauth2/code/{registrationId}")
.authorizationUri("https://zoom.us/oauth/authorize")
.tokenUri("https://zoom.us/oauth/token")
.userInfoUri("https://api.zoom.us/v2/user")
.clientName("Zoom").build();
}
}
在我已配置的 Zoom 应用程序中
OAuth 的重定向 URL:http://{my_host_name}/login/oauth2/code/zoom
白名单网址:http://{my_host_name}/zoom
此外,我的应用程序的端点位于 /zoom
【问题讨论】:
标签: java spring spring-boot oauth zooming