spring-boot - 使用 Spring Boot OAuth2 针对 Google 进行身份验证时,如何将 google 用户电子邮件添加到白名单用户

标签 spring-boot spring-security-oauth2 google-oauth

我想将连接到 OAuth2 客户端的用户列入白名单,但我不知道如何获取用户名(特别是 Google 电子邮件地址)。

我基于 Spring 教程创建了一个 Spring Boot OAuth2 应用程序

https://spring.io/guides/tutorials/spring-boot-oauth2/#_social_login_manual

我正在通过 Google 进行身份验证(成功)。我想确定用户电子邮件地址,以便可以将身份验证用户列入白名单。

这个网站,

http://www.baeldung.com/spring-security-openid-connect#filter

建议我可以解压从 Google 获取的“id_token”,如下所示:

/**
 * logic to unpack a ConnectID id_token like what we get from Google -
 * see "Spring Security and OpenID Connect" - heading '4. Custom OpenID Connect Filter':
 *         http://www.baeldung.com/spring-security-openid-connect#filter
 * 
 * @param oa2token
 * @return
 */
private static UsernamePasswordAuthenticationToken getOpenIDDataForToken(OAuth2AccessToken oa2token)
{
        try {
            String idToken = oa2token.getAdditionalInformation().get("id_token").toString();
            Jwt tokenDecoded = JwtHelper.decode(idToken);
            Map<String, String> authInfo = new ObjectMapper().readValue(tokenDecoded.getClaims(), Map.class);

            OpenIdConnectUserDetails user = new OpenIdConnectUserDetails(authInfo, oa2token);
            return new UsernamePasswordAuthenticationToken(user, null, user.getAuthorities());
        } catch (InvalidTokenException e) {
            throw new BadCredentialsException("Could not obtain user details from token", e);
        }
}

但我无法编译此代码 - 我不知道如何获取类 JtwHelper!

我四处搜索,以下可能是正确的 Maven 依赖项:

        <!-- https://mvnrepository.com/artifact/org.springframework.security/spring-security-jwt -->
        <dependency>
            <groupId>org.springframework.security</groupId>
            <artifactId>spring-security-jwt</artifactId>
        </dependency>

但是将其添加到我的 pom.xml 中并没有帮助 - 我没有在我的 .m2 存储库中得到真正的 Jar 文件 - 我得到一个文本文件!最重要的是,Eclipse 无法解析类型 JwtHelper

帮助?我不确定我哪里出了问题。

最佳答案

看起来这个页面上的答案有我的答案(感谢@user2802927):

How to get custom user info from OAuth2 authorization server /user endpoint

代码如下:

    Principal principal = servlet_request.getUserPrincipal();
    try {
         if (principal != null) {
                OAuth2Authentication oAuth2Authentication = (OAuth2Authentication) principal;
                Authentication authentication = oAuth2Authentication.getUserAuthentication();
                Map<String, String> details = new LinkedHashMap<>();
                details = (Map<String, String>) authentication.getDetails();
                Map<String, String> map = new LinkedHashMap<>();
                map.put("email", details.get("email"));
                logger.debug("details map is: {}", map);
            }
    } catch (Exception e) {
        logger.error("dumping principal " + principal + "failed, exception: ", e );
    }

输出显示我找到了成功——用户的电子邮件地址!!!

2017-05-23 11:48:26.751 DEBUG 7687 --- [nio-8443-exec-1] ication$$EnhancerBySpringCGLIB$$91415b85 :
details map is: {<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="640109050d0859091d0109050d0805000016011717240309050d084a070b09" rel="noreferrer noopener nofollow">[email protected]</a>}

关于spring-boot - 使用 Spring Boot OAuth2 针对 Google 进行身份验证时,如何将 google 用户电子邮件添加到白名单用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44138312/

相关文章:

java - Tomcat 中的 Quartz 调度程序内存泄漏

java - Spring - 如何运行一系列线程并等待它们完成后再完成?

spring-boot - Spring Cloud Gateway 和 TokenRelay 过滤器

Java google drive api 凭据

angular - 检查 Angular 2+ 中使用的 api 凭据的最佳实践

java - 如何从 Spring Boot 调用用户定义的 sql 函数?

java - 使用Spring boot渲染jsp页面出错?

spring-security - 如果 OAuth 2.0 授权服务器和资源服务器位于单独的应用程序中,它们如何共享 token ?

Spring Framework - 在哪里解析 JWT 以进行自定义声明?

c# - 为什么YouTube的v3 API声称我的访问 token 没有插入实时流的权限?