• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

ymate-module-oauth: 基于YMP框架实现的OAuth2授权服务模块;

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

ymate-module-oauth

开源软件地址:

https://gitee.com/suninformation/ymate-module-oauth

开源软件介绍:

YMP-OAuth:

OAuth2授权服务模块,特性如下:

  • 支持客户端模式 grant_type=client_credentials

  • 支持授权码模式 grant_type=authorization_code

  • 支持密码模式 grant_type=password

  • 支持简化模式 response_type=token

  • 支持自定义scope权限,默认支持:snsapi_basesnsapi_userinfo

  • 支持令牌更新:grant_type=refresh_token

  • 支持令牌有效性验证;

  • 支持拦截器限制接口请求的scope权限:

    • 客户端授权拦截器:ClientAccessTokenCheckInterceptor.class
    • 用户网页授权拦截器:UserAccessTokenCheckInterceptor.class

Maven包依赖

<dependency>    <groupId>net.ymate.module</groupId>    <artifactId>ymate-module-oauth</artifactId>    <version>1.0.0</version></dependency>

模块配置参数说明

#-------------------------------------# module.oauth 模块初始化参数#-------------------------------------# AccessToken访问凭证超时时间, 单位(秒), 默认值: 7200(两小时)ymp.configs.module.oauth.access_token_expire_in=# AccessToken访问凭证最大刷新次数,若为0表示不限制ymp.configs.module.oauth.refresh_count_max=# RefreshToken刷新凭证超时时间, 单位(天), 默认值: 30ymp.configs.module.oauth.refresh_token_expire_in=# 授权码过期时间, 单位(分钟), 默认值: 5ymp.configs.module.oauth.authorization_code_expire_in=# 缓存名称前缀, 默认值: ""ymp.configs.module.oauth.cache_name_prefix=# 设置开启的授权模式, 多个模式之间用'|'分隔, 默认值: none,可选值范围: [authorization_code|implicit|password|refresh_token|client_credentials|none]ymp.configs.module.oauth.allow_grant_types=# Token生成器接口实现, 默认值: net.ymate.module.oauth.impl.DefaultTokenGeneratorymp.configs.module.oauth.token_generator_class=# OAuth令牌存储适配器接口实现, 默认值: 空ymp.configs.module.oauth.storage_adapter_class=# 错误信息响应适配器接口实现, 默认值: net.ymate.module.oauth.impl.DefaultErrorAdapterymp.configs.module.oauth.error_adapter_class=# OAuth用户授权处理器接口实现, 默认值: net.ymate.module.oauth.web.impl.DefaultNeedAuthorizationProcessorymp.params.module.oauth.need_authorization_processor_class=# OAuth异常错误处理器,可选参数ymp.configs.webmvc.error_processor_class=net.ymate.module.oauth.web.WebErrorProcessor

示例代码

  • 通过拦截器限制接口请求scope的权限必须是snsapi_userinfo

      @RequestMapping("/sns/userinfo")  @Before(UserAccessTokenCheckInterceptor.class)  @OAuthScope(IOAuth.Const.SCOPE_SNSAPI_USERINFO)  public IView userinfo(@RequestParam(IOAuth.Const.ACCESS_TOKEN) String accountToken, @RequestParam(IOAuth.Const.OPEN_ID) String openId) throws Exception {      OAuthResponse _response = null;      IOAuthScopeProcessor _processor = OAuth.get().getScopeProcessor(_scope.value());      if (_processor != null) {          _response = _processor.process(WebContext.getRequest(), (OAuthTokenBean) WebContext.getRequest().getAttribute(OAuthTokenBean.class.getName()));      }      if (_response == null) {          _response = OAuthResponseUtils.badRequest(OAuthError.ResourceResponse.INVALID_REQUEST);      }      return new HttpStatusView(_response.getResponseStatus(), false).writeBody(_response.getBody());  }
  • 客户端模式:

    • 以POST方式请求URL地址:

        http://localhost:8080/oauth2/token
    • POST请求报文:

        POST /oauth2/token HTTP/1.1  Host: localhost:8080  Content-Type: application/x-www-form-urlencoded    client_id=default&client_secret=7890123&grant_type=client_credentials
  • 授权码模式:

    • 获取授权码,以GET方式请求URL地址,成功则重定向并携带code授权码:

        http://localhost:8080/oauth2/sns/authorize?client_id=default&response_type=code&redirect_uri=http://localhost:8080/oauth2/sns/redirect&scope=snsapi_base&state=Helloworld
    • 接收到code授权码后,获取access_token令牌,以POST方式请求URL地址:

        http://localhost:8080/oauth2/sns/access_token
    • POST请求报文:

        POST /oauth2/sns/access_token HTTP/1.1  Host: localhost:8080  Content-Type: application/x-www-form-urlencoded  code=f32ab01222936356e5a8352b9beeacc3&client_id=default&client_secret=7890123&grant_type=authorization_code&redirect_uri=http://localhost:8080/oauth2/sns/redirect
  • 简化模式:

    • 以GET方式请求URL地址,成功则重定向并携带access_token令牌:

        http://localhost:8080/oauth2/sns/authorize?client_id=default&response_type=token&redirect_uri=http://localhost:8080/oauth2/sns/redirect&scope=snsapi_base&state=Helloworld
  • 密码模式:

    • 以POST方式请求URL地址:

        http://localhost:8080/oauth2/sns/access_token
    • POST请求报文:

        POST /oauth2/sns/access_token HTTP/1.1  Host: localhost:8080  Content-Type: application/x-www-form-urlencoded  client_id=default&client_secret=7890123&grant_type=password&username=suninformation&password=8fa6adcdaa9e50635c5bf54eacfca83a&scope=snsapi_userinfo
  • 令牌更新:

    • 以POST方式请求URL地址:

        http://localhost:8080/oauth2/sns/refresh_token
    • POST请求报文:

        POST /oauth2/sns/refresh_token HTTP/1.1  Host: localhost:8080  Content-Type: application/x-www-form-urlencoded  grant_type=refresh_token&refresh_token=207f2a5de46198dc8b42ba175e75cac1&client_id=default&client_secret=7890123
  • 令牌有效性验证:

    • 以GET方式请求URL地址:

        http://localhost:8080/oauth2/sns/auth?access_token=39ec0af0b9f5f7ebe2877389bb2919b4&open_id=6bf18fa2f9a136273fb90e58dff4a964
  • 获取授权用户基本信息:

    • 以GET方式请求URL地址:

        http://localhost:8080/oauth2/sns/userinfo?access_token=8fec1e7eca5d6e18b48d33f1725f6082&open_id=6bf18fa2f9a136273fb90e58dff4a964

One More Thing

YMP不仅提供便捷的Web及其它Java项目的快速开发体验,也将不断提供更多丰富的项目实践经验。

感兴趣的小伙伴儿们可以加入 官方QQ群480374360,一起交流学习,帮助YMP成长!

了解更多有关YMP框架的内容,请访问官网:http://www.ymate.net/


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap