mirror of
https://gitee.com/dromara/sa-token.git
synced 2024-12-01 19:37:42 +08:00
完善赞助者名单
This commit is contained in:
parent
f8afd89154
commit
f9113ddce5
@ -109,6 +109,7 @@
|
||||
</a>
|
||||
<div class="zk-context">
|
||||
<div>
|
||||
<a href="https://www.bilibili.com/video/BV1nJWWeDEFN/" target="_blank">架构驿站(11集)</a>
|
||||
<a href="https://www.bilibili.com/video/BV1Zt421u7gk/" target="_blank">王清江唷(99集)</a>
|
||||
<a href="https://www.bilibili.com/video/BV1kG411o7Ms/" target="_blank">筑梦信仰-joy(20集)</a>
|
||||
<a href="https://www.bilibili.com/video/BV11u4y197JL/" target="_blank">达达-Java(26集)</a>
|
||||
|
@ -63,6 +63,7 @@
|
||||
</a>
|
||||
<div class="zk-context">
|
||||
<div>
|
||||
<a href="https://www.bilibili.com/video/BV1nJWWeDEFN/" target="_blank">架构驿站(11集)</a>
|
||||
<a href="https://www.bilibili.com/video/BV1Zt421u7gk/" target="_blank">王清江唷(99集)</a>
|
||||
<a href="https://www.bilibili.com/video/BV1kG411o7Ms/" target="_blank">筑梦信仰-joy(20集)</a>
|
||||
<a href="https://www.bilibili.com/video/BV11u4y197JL/" target="_blank">达达-Java(26集)</a>
|
||||
@ -209,6 +210,10 @@
|
||||
<img src="https://oss.dev33.cn/sa-token/awards/gpv.jpg?x-oss-process=style/st" /> <br>
|
||||
<p>GVP - Gitee 最有价值开源项目</p>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<img src="https://oss.dev33.cn/sa-token/awards/g-star.jpg?x-oss-process=style/st" /> <br>
|
||||
<p>GitCode G-Star 优质开源项目</p>
|
||||
</div>
|
||||
<div class="swiper-slide">
|
||||
<img src="https://oss.dev33.cn/sa-token/awards/osc-2021.jpg?x-oss-process=style/st"/> <br>
|
||||
<p>OSCHINA 2021 人气指数 TOP 30 开源项目</p>
|
||||
@ -547,6 +552,12 @@
|
||||
<a href="https://www.jcodeyun.com/" target="_blank" title="协卓云动(深圳)数字发展有限公司">
|
||||
<img class="lazy" data-original="https://oss.dev33.cn/sa-token/com/xiezhuoyundong.png">
|
||||
</a>
|
||||
<a href="https://www.fakamiao.com/" target="_blank" title="秦皇岛桃猫信息科技有限责任公司">
|
||||
<img class="lazy" data-original="https://oss.dev33.cn/sa-token/com/taomaoxinxi.png" style="max-height: 50%;">
|
||||
</a>
|
||||
<a href="https://jiagouyizhan.com/" target="_blank" title="可持续架构(菏泽)信息科技有限公司">
|
||||
<img class="lazy" data-original="https://oss.dev33.cn/sa-token/com/jiagouyizhan.png">
|
||||
</a>
|
||||
</div>
|
||||
<div style="height: 10px; clear: both;"></div>
|
||||
<p>
|
||||
|
@ -14,7 +14,7 @@ OAuth2 集成常见问题整理
|
||||
- 统一认证登录地址是:`http://{host}:{port}/oauth2/authorize`。
|
||||
- 而你访问的却是:`http://{host}:{port}/oauth2/authorize2`。
|
||||
|
||||
地址写错了,框架就不会处理这个请求,会直接返回 `{"msg": "not handle"}`,所有开放地址可参考:[SSO 开放接口](/oauth2/oauth2-apidoc)
|
||||
地址写错了,框架就不会处理这个请求,会直接返回 `{"msg": "not handle"}`,所有开放地址可参考:[OAuth2 开放接口](/oauth2/oauth2-apidoc)
|
||||
|
||||
如果仔细检查地址后没有写错,却依然返回了这个信息,那有可能是对应的接口没有打开,比如说:
|
||||
|
||||
|
@ -121,7 +121,7 @@ public class SaOAuth2ServerController {
|
||||
|
||||
// Sa-Token OAuth2 定制化配置
|
||||
@Autowired
|
||||
public void setSaOAuth2Config(SaOAuth2Config oauth2Server) {
|
||||
public void configOAuth2Server(SaOAuth2ServerConfig oauth2Server) {
|
||||
|
||||
// 添加 client 信息
|
||||
oauth2Server.addClient(
|
||||
@ -135,7 +135,7 @@ public class SaOAuth2ServerController {
|
||||
GrantType.implicit, // 隐式式
|
||||
GrantType.refresh_token, // 刷新令牌
|
||||
GrantType.password, // 密码式
|
||||
GrantType.client_credentials, // 客户端模式
|
||||
GrantType.client_credentials // 客户端模式
|
||||
)
|
||||
);
|
||||
|
||||
@ -203,8 +203,8 @@ public class GlobalExceptionHandler {
|
||||
public class SaOAuth2ServerApplication {
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(SaOAuth2ServerApplication.class, args);
|
||||
System.out.println("\nSa-Token-OAuth2 Server 端启动成功");
|
||||
System.out.println(SaOAuth2Manager.getConfig());
|
||||
System.out.println("\nSa-Token-OAuth2 Server端启动成功,配置如下:");
|
||||
System.out.println(SaOAuth2Manager.getServerConfig());
|
||||
}
|
||||
}
|
||||
```
|
||||
|
@ -1166,4 +1166,41 @@ var donateList = [
|
||||
"msg": '感谢您的开源项目,内部项目鉴权框架参考了您的部分设计思想(用户会话和令牌会话)。',
|
||||
"date": "2024-07-20"
|
||||
},
|
||||
{
|
||||
"name": "张磊",
|
||||
"link": "https://gitee.com/zl18282425038",
|
||||
"money": 1.0,
|
||||
"msg": '感谢您的开源项目!',
|
||||
"date": "2024-08-03"
|
||||
},
|
||||
{
|
||||
"name": "老黄H",
|
||||
"link": "https://gitee.com/lao-huang-h",
|
||||
"money": 1.0,
|
||||
"msg": '感谢您的开源项目我是王攀',
|
||||
"date": "2024-08-04"
|
||||
},
|
||||
{
|
||||
"name": "Chat2DB",
|
||||
"link": "https://gitee.com/jipengfei001",
|
||||
"money": 10.0,
|
||||
"msg": 'https://github.com/chat2db/Chat2DB/ 数据库客户端',
|
||||
"date": "2024-08-05"
|
||||
},
|
||||
|
||||
{
|
||||
"name": "gentleman",
|
||||
"link": "https://gitee.com/guoweiweigege",
|
||||
"money": 10.0,
|
||||
"msg": '设计简单 功能多且强大 我杜伟坤为你代言',
|
||||
"date": "2024-08-09"
|
||||
},
|
||||
{
|
||||
"name": "june",
|
||||
"link": "https://gitee.com/june_home",
|
||||
"money": 50.0,
|
||||
"msg": '非常方便简单易用,感谢您的开源项目!',
|
||||
"date": "2024-08-14"
|
||||
},
|
||||
|
||||
]
|
Loading…
Reference in New Issue
Block a user