gpt4 book ai didi

spring - 使用谷歌不记名 token 访问我的 api

转载 作者:行者123 更新时间:2023-12-01 14:38:35 24 4
gpt4 key购买 nike

我通过定义以下配置以及适当的 application.yml 文件启用了 google auth。

            @EnableOAuth2Sso
@Configuration
public class SecurityConfiguration extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.antMatcher("/**")
.authorizeRequests()
.antMatchers("/", "/login**").permitAll()
.anyRequest().authenticated()
.and()
.exceptionHandling()
.authenticationEntryPoint(new LoginUrlAuthenticationEntryPoint("/"));
}
}

我可以通过浏览器访问我的各种端点。但客户端可能并不总是浏览器。

我有一个如下定义的 Controller 方法

@GetMapping("/user")
public Principal getUser(Principal principal) {
return principal;
}

从返回的 Principal 中,我可以看到类型为 Bearer 的 tokenValue。我如何将它用于我的 api?或与此相关的另一个标记。我只是想使用 google auth 和 oauth 访问我自己的 api。

wget -i http://localhost:8080/user -H "Authorization: Bearer $TOKEN"

将我重定向到登录页面。

为了进一步说明,我想使用 google auth 进行身份验证,但能够使用 oauth 访问我的 api。无论是 google 返回的 token 还是 spring 生成的 token ,都无关紧要。关于如何实现这一目标的任何线索?

最佳答案

你可以看看spring's tutorial focusing on oauth2 ,并 checkout github 项目。他们有一个很好的 auth-server 项目,您可以在其中找到您想要实现的目标的示例。

测试场景的步骤是:

  • checkout 教程项目 git clone https://github.com/spring-guides/tut-spring-boot-oauth2.git
  • 运行名为 auth-server 的 spring boot 项目cd auth-server && mvn spring-boot:run
  • 通过 http://localhost:8080 进行身份验证

您会发现在 auth-server 端(api 服务器),一个 OAuth2Authentication 主体将可用,并且持有者 token 可用。如果用户通过身份验证,您可以使用此 auth-server 示例来设计返回此 token 的 Controller 。

  • 然后您将能够使用此类请求 wget 或 curl 身份验证服务器:

curl -X GET "http://localhost:8080/me"-H "Authorization: Bearer 22e70fcf-eb60-483c-9105-xxxx"

在我的测试中,我得到了以下响应:{"name":"674008369426415"}

在没有承载的情况下,我幸运地得到了:

curl -X GET "http://localhost:8080/me"

{"error":"unauthorized","error_description":"访问此资源需要完整的身份验证"}

缺少部分代码

查看您的代码,我认为您缺少 spring 教程中的 SSO 过滤器部分:

http.antMatcher("/**")
// more configuration here
.addFilterBefore(ssoFilter(), BasicAuthenticationFilter.class);

@Bean
public FilterRegistrationBean oauth2ClientFilterRegistration(OAuth2ClientContextFilter filter) {
FilterRegistrationBean registration = new FilterRegistrationBean();
registration.setFilter(filter);
registration.setOrder(-100);
return registration;
}

一定是在某处拦截了客户端的请求,所以这可能是值得一看的东西。

关于spring - 使用谷歌不记名 token 访问我的 api,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40846972/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com