zoukankan      html  css  js  c++  java
  • Authorization-Server入门(一)

    授权服务器入门(一)

    本文主要讲授权服务器基本入门,还有client_credentials和password授权方式。client_credentials是机器或应用之间交互,没有用户介入,不对外开放注册。password需要用户交互,在获取服务器资源之前需要用户名和密码认证。另外password的授权方式返回的token有refresh_token,而client_credentials没有。

    1 工程代码

    1.1Maven依赖

    <dependency>
    	<groupId>org.springframework.boot</groupId>
    	<artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
    	<groupId>org.springframework.cloud</groupId>
    	<artifactId>spring-cloud-starter-oauth2</artifactId>
    </dependency>
    

    1.2 AuthorizationServer05Application.java 配置信息

    package com.example.authorizationserver05;

    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.security.oauth2.config.annotation.web.configuration.EnableAuthorizationServer;

    @EnableAuthorizationServer
    @SpringBootApplication
    public class AuthorizationServer05Application {

        public static void main(String[] args) {
            SpringApplication.run(AuthorizationServer05Application.classargs);
        }

    }


    1.3 application.properties 属性文件

    security.oauth2.client.client-id = client01
    security.oauth2.client.client-secret = 123456

    spring.security.user.name=user1
    spring.security.user.password=123456

    4 运行应用

    通过client_credentials获取token 的url http://localhost:8080/oauth/token?grant_type=client_credentials&scope=all 

    通过password获取token 的url http://localhost:8080/oauth/token?grant_type=password&scope=all

  • 相关阅读:
    读完此文让你了解各个queue的原理
    借汇编之力窥探String背后的数据结构奥秘
    汇编高手带你玩转字符串,快上车!
    语雀调研
    产品技能一:抽象能力
    我所认知的敏捷开发
    产品经理需要的技能,我有吗?
    孙正义采访:接下来的30年,一切将被重新定义
    5G小白鼠
    goto语句为啥不受待见
  • 原文地址:https://www.cnblogs.com/JavaWeiBianCheng/p/13877520.html
Copyright © 2011-2022 走看看