SpringBootOAuth2客户端是SpringMVC的框架吗?

0x6upsns  于 2021-07-23  发布在  Java
关注(0)|答案(0)|浏览(203)

我想在springrestapi中使用springoauth2客户端。社交登录成功后,我需要一个发送访问令牌到前端。。

@Override
protected void configure(HttpSecurity http) throws Exception {

    http
        .cors()
        .configurationSource(source)
        .and()
        .headers()
        .and()
        .csrf()
        .disable()
        .httpBasic()
        .disable()
        .logout()
        .disable()
        .formLogin()
        .disable()
        .oauth2Login()
        .userInfoEndpoint()
        .userService(customOAuth2UserService)
        .and()
        .successHandler((request, response, auth) -> {
            String token = tokenProvider.getToken();   //How to send token to Front-end server?
            response.sendRedirect("/oauth/test");
        });

        }
    }

  }

但是。。

结果是这样的。有没有一种方法可以将它从restapi发送到前端服务器,而不是立即重定向它?

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题