From efda6adaf52d5a2a9992eafa70c52df11efa10cd Mon Sep 17 00:00:00 2001 From: jiadong Date: Sat, 29 Nov 2025 11:01:51 +0800 Subject: [PATCH] =?UTF-8?q?[200=5F33]=20=E7=99=BB=E9=99=86=E6=8C=89?= =?UTF-8?q?=E9=92=AE=E5=AE=9E=E7=8E=B0-=E7=99=BB=E9=99=86=E5=8A=9F?= =?UTF-8?q?=E8=83=BD=E5=BC=80=E5=8F=91-=E7=BD=91=E9=A1=B5=E7=AB=AF?= =?UTF-8?q?=E7=99=BB=E9=99=86=E5=90=8E=E5=AE=A2=E6=88=B7=E7=AB=AF=E7=99=BB?= =?UTF-8?q?=E9=99=86=E7=9C=81=E5=8E=BB=E7=99=BB=E9=99=86=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=A1=AB=E5=86=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TeXmacs/plugins/account/progs/liii/account.scm | 8 ++++---- devel/200_33.md | 2 ++ 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/TeXmacs/plugins/account/progs/liii/account.scm b/TeXmacs/plugins/account/progs/liii/account.scm index 0bfe55adbc..9b4c041a9b 100644 --- a/TeXmacs/plugins/account/progs/liii/account.scm +++ b/TeXmacs/plugins/account/progs/liii/account.scm @@ -11,7 +11,7 @@ ;; 生产 ; (tm-define (account-oauth2-config key) ; (cond -; ((== key "authorization-url") "http://www.liiistem.cn:8080/oauth2/authorize") +; ((== key "authorization-url") "http://www.liiistem.cn/oauth2-login.html") ; ((== key "access-token-url") "http://www.liiistem.cn:8080/oauth2/token") ; ((== key "client-identifier") "public-client") ; ((== key "scope") "user+llm") @@ -24,7 +24,7 @@ ;; 测试 (tm-define (account-oauth2-config key) (cond - ((== key "authorization-url") "http://test-www.liiistem.cn:8080/oauth2/authorize") + ((== key "authorization-url") "http://test-www.liiistem.cn/oauth2-login.html") ((== key "access-token-url") "http://test-www.liiistem.cn:8080/oauth2/token") ((== key "client-identifier") "public-client") ((== key "scope") "user+llm") @@ -37,7 +37,7 @@ ;; 本地 ; (tm-define (account-oauth2-config key) ; (cond -; ((== key "authorization-url") "http://127.0.0.1:8080/oauth2/authorize") +; ((== key "authorization-url") "http://127.0.0.1:3000/oauth2-login") ; ((== key "access-token-url") "http://127.0.0.1:8080/oauth2/token") ; ((== key "client-identifier") "public-client") ; ((== key "client-secret") "secret") @@ -45,7 +45,7 @@ ; ((== key "port") "1895") ; ((== key "user-info-url") "http://127.0.0.1:8080/api/oauthUser/info") ; ((== key "pricing-url") "http://127.0.0.1:3000/pricing-fruit.html") -; ((== key "click-return-liii-url") "http://127.0.0.1:3000/") +; ((== key "click-return-liii-url") "http://127.0.0.1:3000/?from=login_button") ; (else ""))) diff --git a/devel/200_33.md b/devel/200_33.md index 773860f55b..14a558a312 100644 --- a/devel/200_33.md +++ b/devel/200_33.md @@ -15,6 +15,8 @@ - `triggerOAuth2()` - 触发OAuth2认证流程 - `updateDialogContent()` - 更新对话框内容 +## 2025/11/28 登陆功能开发-网页端登陆后客户端登陆省去登陆信息填写 + ## 2025/11/28 登录按钮增加 from=login_button ## 2025/11/27 社区版点击登陆按钮跳转到官网,修复官网地址 -- Gitee