# spring-boot-demo **Repository Path**: itwangfl/spring-boot-demo ## Basic Information - **Project Name**: spring-boot-demo - **Description**: 整合一些spring代码 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-09-09 - **Last Updated**: 2021-09-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 简化模式 http://localhost:8001/oauth/authorize?response_type=token&client_id=client1&redirect_uri=https://www.baidu.com 先获得授权码code 授权码模式授权 http://localhost:8001/oauth/authorize?response_type=code&client_id=client1&redirect_uri=https://www.baidu.com 密码模式获取token,post方式 http://localhost:8001/oauth/token?grant_type=password&client_id=client1&client_secret=123456&username=admin&password=admin 解析token的地址 https://jwt.io/