完善赞助者名单

This commit is contained in:
click33 2024-08-28 12:44:10 +08:00
parent f8afd89154
commit f9113ddce5
5 changed files with 54 additions and 5 deletions

View File

@ -109,6 +109,7 @@
</a> </a>
<div class="zk-context"> <div class="zk-context">
<div> <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/BV1Zt421u7gk/" target="_blank">王清江唷99集</a>
<a href="https://www.bilibili.com/video/BV1kG411o7Ms/" target="_blank">筑梦信仰-joy20集</a> <a href="https://www.bilibili.com/video/BV1kG411o7Ms/" target="_blank">筑梦信仰-joy20集</a>
<a href="https://www.bilibili.com/video/BV11u4y197JL/" target="_blank">达达-Java26集</a> <a href="https://www.bilibili.com/video/BV11u4y197JL/" target="_blank">达达-Java26集</a>

View File

@ -63,6 +63,7 @@
</a> </a>
<div class="zk-context"> <div class="zk-context">
<div> <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/BV1Zt421u7gk/" target="_blank">王清江唷99集</a>
<a href="https://www.bilibili.com/video/BV1kG411o7Ms/" target="_blank">筑梦信仰-joy20集</a> <a href="https://www.bilibili.com/video/BV1kG411o7Ms/" target="_blank">筑梦信仰-joy20集</a>
<a href="https://www.bilibili.com/video/BV11u4y197JL/" target="_blank">达达-Java26集</a> <a href="https://www.bilibili.com/video/BV11u4y197JL/" target="_blank">达达-Java26集</a>
@ -209,6 +210,10 @@
<img src="https://oss.dev33.cn/sa-token/awards/gpv.jpg?x-oss-process=style/st" /> <br> <img src="https://oss.dev33.cn/sa-token/awards/gpv.jpg?x-oss-process=style/st" /> <br>
<p>GVP - Gitee 最有价值开源项目</p> <p>GVP - Gitee 最有价值开源项目</p>
</div> </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"> <div class="swiper-slide">
<img src="https://oss.dev33.cn/sa-token/awards/osc-2021.jpg?x-oss-process=style/st"/> <br> <img src="https://oss.dev33.cn/sa-token/awards/osc-2021.jpg?x-oss-process=style/st"/> <br>
<p>OSCHINA 2021 人气指数 TOP 30 开源项目</p> <p>OSCHINA 2021 人气指数 TOP 30 开源项目</p>
@ -547,6 +552,12 @@
<a href="https://www.jcodeyun.com/" target="_blank" title="协卓云动(深圳)数字发展有限公司"> <a href="https://www.jcodeyun.com/" target="_blank" title="协卓云动(深圳)数字发展有限公司">
<img class="lazy" data-original="https://oss.dev33.cn/sa-token/com/xiezhuoyundong.png"> <img class="lazy" data-original="https://oss.dev33.cn/sa-token/com/xiezhuoyundong.png">
</a> </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>
<div style="height: 10px; clear: both;"></div> <div style="height: 10px; clear: both;"></div>
<p> <p>

View File

@ -14,7 +14,7 @@ OAuth2 集成常见问题整理
- 统一认证登录地址是:`http://{host}:{port}/oauth2/authorize`。 - 统一认证登录地址是:`http://{host}:{port}/oauth2/authorize`。
- 而你访问的却是:`http://{host}:{port}/oauth2/authorize2`。 - 而你访问的却是:`http://{host}:{port}/oauth2/authorize2`。
地址写错了,框架就不会处理这个请求,会直接返回 `{"msg": "not handle"}`,所有开放地址可参考:[SSO 开放接口](/oauth2/oauth2-apidoc) 地址写错了,框架就不会处理这个请求,会直接返回 `{"msg": "not handle"}`,所有开放地址可参考:[OAuth2 开放接口](/oauth2/oauth2-apidoc)
如果仔细检查地址后没有写错,却依然返回了这个信息,那有可能是对应的接口没有打开,比如说: 如果仔细检查地址后没有写错,却依然返回了这个信息,那有可能是对应的接口没有打开,比如说:

View File

@ -121,7 +121,7 @@ public class SaOAuth2ServerController {
// Sa-Token OAuth2 定制化配置 // Sa-Token OAuth2 定制化配置
@Autowired @Autowired
public void setSaOAuth2Config(SaOAuth2Config oauth2Server) { public void configOAuth2Server(SaOAuth2ServerConfig oauth2Server) {
// 添加 client 信息 // 添加 client 信息
oauth2Server.addClient( oauth2Server.addClient(
@ -135,7 +135,7 @@ public class SaOAuth2ServerController {
GrantType.implicit, // 隐式式 GrantType.implicit, // 隐式式
GrantType.refresh_token, // 刷新令牌 GrantType.refresh_token, // 刷新令牌
GrantType.password, // 密码式 GrantType.password, // 密码式
GrantType.client_credentials, // 客户端模式 GrantType.client_credentials // 客户端模式
) )
); );
@ -203,8 +203,8 @@ public class GlobalExceptionHandler {
public class SaOAuth2ServerApplication { public class SaOAuth2ServerApplication {
public static void main(String[] args) { public static void main(String[] args) {
SpringApplication.run(SaOAuth2ServerApplication.class, args); SpringApplication.run(SaOAuth2ServerApplication.class, args);
System.out.println("\nSa-Token-OAuth2 Server 端启动成功"); System.out.println("\nSa-Token-OAuth2 Server端启动成功,配置如下:");
System.out.println(SaOAuth2Manager.getConfig()); System.out.println(SaOAuth2Manager.getServerConfig());
} }
} }
``` ```

View File

@ -1166,4 +1166,41 @@ var donateList = [
"msg": '感谢您的开源项目,内部项目鉴权框架参考了您的部分设计思想(用户会话和令牌会话)。', "msg": '感谢您的开源项目,内部项目鉴权框架参考了您的部分设计思想(用户会话和令牌会话)。',
"date": "2024-07-20" "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"
},
] ]