# springboot-oauth2 **Repository Path**: running_boy/springboot-oauth2 ## Basic Information - **Project Name**: springboot-oauth2 - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-09-08 - **Last Updated**: 2024-11-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #### 授权码模式登陆 1. http://127.0.0.1:9000/oauth/authorize?client_id=myjszl&response_type=code&scope=all&redirect_uri=http://www.baidu.com 2. http://127.0.0.1:9000/oauth/token?grant_type=authorization_code&code=xxx&client_id=clientapp&client_secret=secret&scope=all&redirect_uri=http://localhost:9001/callback #### 密码模式登陆 1. http://127.0.0.1:9000/oauth/token?client_id=myjszl&grant_type=password&scope=all&client_secret=123&username=admin&password=123