欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

OAuth2简易实战(一)

程序员文章站 2022-07-11 09:37:14
1. OAuth2简易实战 1.1. 授权码授权模式(Authorization code Grant) 1.1.1. 流程图 1.1.2. 授权服务器配置 1. 配置授权服务器中 client,secret,redirectUri,授权模式,权限配置 1.1.3. 资源服务器配置 1. 配置需要资 ......

1. oauth2简易实战

1.1. 授权码授权模式(authorization code grant)

1.1.1. 流程图

OAuth2简易实战(一)

1.1.2. 授权服务器配置

  1. 配置授权服务器中 client,secret,redirecturi,授权模式,权限配置
//授权服务器配置
@configuration
@enableauthorizationserver
public class oauth2authorizationserver extends
        authorizationserverconfigureradapter {

    @override
    public void configure(clientdetailsserviceconfigurer clients)
            throws exception {
        clients.inmemory()
            .withclient("clientapp")
            .secret("112233")
            .redirecturis("http://localhost:9001/callback")
            // 授权码模式
            .authorizedgranttypes("authorization_code")
            .scopes("read_userinfo", "read_contacts");
    }

}

1.1.3. 资源服务器配置

  1. 配置需要资源授权的接口地址
//资源服务配置
@configuration
@enableresourceserver
public class oauth2resourceserver extends resourceserverconfigureradapter {

    @override
    public void configure(httpsecurity http) throws exception {
        http.authorizerequests()
            .anyrequest()
            .authenticated()
        .and()
            .requestmatchers()
            .antmatchers("/api/**");
    }

}

1.1.4. 操作步骤

  1. 浏览器请求下列地址,获取授权code,请求参数client_id,redirect_uri回调地址,response_type响应类型,scope权限
http://localhost:8080/oauth/authorize?client_id=clientapp&redirect_uri=http://localhost:9001/callback&response_type=code&scope=read_userinfo
  1. 输入用户名密码,该密码为spring security的登路密码,application.properties里配置

OAuth2简易实战(一)

# spring security setting
security.user.name=bobo
security.user.password=xyz
  1. 登陆后显示

OAuth2简易实战(一)

  1. 选择approve,点击authorize,会调用回调地址并返回code参数

OAuth2简易实战(一)

  1. 在获得授权码后,接下去获取访问令牌,访问
http://localhost:8080/oauth/token?code=ghn0hf&grant_type=authorization_code&redirect_uri=http://localhost:9001/callback&scope=read_userinfo

OAuth2简易实战(一)

注意:需要在headers里添加认证
OAuth2简易实战(一)
认证参数就是授权服务器配置的client和secret

OAuth2简易实战(一)

  1. 获取token后访问
http://localhost:8080/api/userinfo?access_token=f4345f3a-34a3-4887-bc02-e95150c54bf4

OAuth2简易实战(一)

如果token错误,则
OAuth2简易实战(一)

1.1.5. 使用场景

  1. 授权码模式是最常见的一种授权模式,在oauth2.0内是最安全和最完善的。
  2. 适用于所有有server端的应用,如web站点、有server端的手机客户端。
  3. 可以得到较长期限授权。

1.2. 隐式授权模式(implicit grant)

1.2.1. 流程图

OAuth2简易实战(一)

1.2.2. 改动 authorizedgranttypes

@configuration
@enableauthorizationserver
public class oauth2authoriationserver extends authorizationserverconfigureradapter{
    @override
    public void configure(clientdetailsserviceconfigurer clients) throws exception {

        clients.inmemory()
                .withclient("clientapp")
                .secret("112233")
                .accesstokenvalidityseconds(60)
                .redirecturis("http://localhost:9001/callback")
                .authorizedgranttypes("implicit")
                .scopes("admin", "visitor");
    }
}

1.2.3. 操作步骤

  1. 申请授权token,参数和申请授权码类似,client_id,redirect_uri回调地址,response_type有变动,改为直接获取token,scope权限,state用于认证标记,传过去什么回调时传回来什么
http://localhost:8080/oauth/authorize?client_id=clientapp&redirect_uri=http://localhost:9001/callback&response_type=token&scope=admin&state=abc

OAuth2简易实战(一)

  1. 操作同上,输入密码跳转认证确认,选approve后点authorize,跳转

OAuth2简易实战(一)

  1. 可以看到直接返回了access_token,state也是原样返回
  2. 之后按授权码模式第六步操作,把access_token参数带上,进行接口调用就可以了

OAuth2简易实战(一)

1.2.4. 使用场景

  1. 适用于所有无server端配合的应用
  2. 如手机/桌面客户端程序、浏览器插件。
  3. 基于javascript等脚本客户端脚本语言实现的应用。

注意:因为access token是附着在 redirect_uri 上面被返回的,所以这个 access token就可能会暴露给资源所有者或者设置内的其它方(对资源所有者来说,可以看到redirect_uri,对其它方来说,可以通过监测浏览器的地址变化来得到 access token)。

1.3. 密码模式(resource owner password credentials grant)

1.3.1. 流程图

OAuth2简易实战(一)

1.3.2. 改动

  1. 授权服务器配置,需要添加用户认证管理端点authenticationmanager,修改模式authorizedgranttypes为password
// 授权服务器配置
@configuration
@enableauthorizationserver
public class oauth2authoriationserver extends authorizationserverconfigureradapter{
    
    @autowired
    private authenticationmanager authenticationmanager;

    @override
    public void configure(authorizationserverendpointsconfigurer endpoints) throws exception {
        endpoints.authenticationmanager(authenticationmanager);
    }

    @override
    public void configure(clientdetailsserviceconfigurer clients) throws exception {

        clients.inmemory()
                .withclient("clientapp")
                .secret("112233")
                .accesstokenvalidityseconds(60)
                .redirecturis("http://localhost:9001/callback")
                .authorizedgranttypes("password")
                .scopes("admin", "visitor");
    }
}

1.3.3. 操作步骤

  1. 调用以下链接,向客户端和服务器提供用户名密码
http://localhost:8080/oauth/token?password=123456&grant_type=password&redirect_uri=http://localhost:9001/callback&username=lll&scope=admin

注意:和授权码模式一样,需要在headers里添加认证

  1. 结果:
    OAuth2简易实战(一)

  2. 获取token后,步骤同1.1和1.2模式

1.3.4. 使用场景

  1. 这种模式适用于用户对应用程序高度信任的情况。比如是用户操作系统的一部分。
  2. 认证服务器只有在其他授权模式无法执行的情况下,才能考虑使用这种模式。

1.4. 客户端凭证模式(client credentials grant)

1.4.1. 流程图

OAuth2简易实战(一)

1.4.2. 改动

  1. 只需修改授权服务器,authorizedgranttypes类型client_credentials

1.4.3. 操作步骤

http://localhost:8080/oauth/token?grant_type=client_credentials&scope=admin

OAuth2简易实战(一)

  1. 可以看到客户端凭证模式也需要在header里添加认证账户密码
  2. 获得token后操作同上

1.4.4. 使用场景

  1. 客户端模式应用于应用程序想要以自己的名义与授权服务器以及资源服务器进行互动。
  2. 例如使用了第三方的静态文件服务

1.5. 刷新token

1.5.1. 流程图

OAuth2简易实战(一)

1.5.2. 改动

1.5.3. 操作步骤

  1. 以授权码模式为例,步骤同授权码模式,取得授权码后,去取token时,返回

OAuth2简易实战(一)

  1. 在token过期后,调用
http://localhost:8080/oauth/token?grant_type=refresh_token&refresh_token=ad3941d1-c6dd-4a2e-a9c8-eac6a9a59dd2

OAuth2简易实战(一)

  1. 返回
    OAuth2简易实战(一)
  2. 就可以拿新的access_token继续调用了
  3. 建议将access_token和refresh_token的过期时间保存下来,每次调用平台方的业务api前先对access_token和refresh_token进行一下时间判断,如果过期则执行刷新access_token或重新授权操作。refersh_token如果过期就只能让用户重新授权。

参考 https://www.cnblogs.com/maoxiaolv/p/5838680.html

代码学习地址 https://github.com/spring2go/oauth2lab