授权服务器入门(一)

Authorization-Server入门(一)

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

Authorization-Server入门(一)

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 

Authorization-Server入门(一)

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

Authorization-Server入门(一)

相关文章:

  • 2021-07-05
  • 2021-07-08
  • 2022-01-07
  • 2021-05-20
  • 2021-06-17
  • 2021-05-01
猜你喜欢
  • 2022-12-23
  • 2021-05-26
  • 2022-01-05
  • 2021-12-09
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案