我正在学习教程https://spring.io/guides/tutorials/spring-boot-oauth2/在最后一个例子中有一个添加错误消息的例子。一切似乎都很好,但我不明白为什么当我用github登录时,这个bean工作,但当我用google登录时,它不工作。(当我调试它时,断点停止在github登录时,通过google登录时不会停止)。注意到这只适用于github?bean(完全来自例子):
@Bean
public OAuth2UserService<OAuth2UserRequest, OAuth2User> oauth2UserService(WebClient rest) {
DefaultOAuth2UserService delegate = new DefaultOAuth2UserService();// breakpoint here
return request -> {
OAuth2User user = delegate.loadUser(request); //and breakpoint here
if (!"github".equals(request.getClientRegistration().getRegistrationId())) {
return user;
}
OAuth2AuthorizedClient client = new OAuth2AuthorizedClient
(request.getClientRegistration(), user.getName(), request.getAccessToken());
String url = user.getAttribute("organizations_url");
List<Map<String, Object>> orgs = rest
.get().uri(url)
.attributes(oauth2AuthorizedClient(client))
.retrieve()
.bodyToMono(List.class)
.block();
if (orgs.stream().anyMatch(org -> "spring-projects".equals(org.get("login")))) {
return user;
}
throw new OAuth2AuthenticationException(new OAuth2Error("invalid_token", "Not in Spring Team", ""));
};
}
字符串
2条答案
按热度按时间6vl6ewon1#
你可以使用OidcUserService来挂接google oauth认证过程。
检查下面的文章。
https://www.devglan.com/spring-security/spring-boot-security-google-oauth
希望这对你有帮助。
wbgh16ku2#
苏丹朱马塔耶夫,对于谷歌,你必须实现:
字符串