qiuChengleiy / spring-cloud-all

⭐️⭐️⭐️一起来学 SpringCloud 进阶 + 各种中间件整合, 涵源码分析

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PkQ Cloud 微服务学习

介绍

springcloud进阶项目 欢迎star ⭐️ 我的博客(阅读体验较佳)

配套文章

项目源码(源码已更新 欢迎star⭐️)

往期并发编程内容推荐

博客(阅读体验较佳)

推荐 SpringBoot & SpringCloud (源码已更新 欢迎star⭐️)

Oauth2 提示

  • 发起请求获取授权码
http://localhost:10001/oauth/authorize?client_id=xxxx&response_type=code&scope=xxx&redirect_uri=xxxx

#

http://localhost:10001/oauth/authorize?client_id=clientId1&response_type=code&scope=all&redirect_uri=https://www.baidu.com
  • 授权成功后跳转redirect_uri 并携带参数code, 通过code获取token
http://localhost:10001/oauth/token?client_id=xxxx&grant_type=xxx&code=xxx&redirect_uri=xxxxxxx

# 例
http://localhost:10001/oauth/token?client_id=clientId1&grant_type=authorization_code&code=TbQ2Od&redirect_uri=https://www.baidu.com

公众号

关注可以获取Java八股文面试资料哦~

About

⭐️⭐️⭐️一起来学 SpringCloud 进阶 + 各种中间件整合, 涵源码分析


Languages

Language:Java 90.2%Language:HTML 9.8%