From 0025748ba7a83d4d316305b567707a7fe983df12 Mon Sep 17 00:00:00 2001 From: "yadong.zhang" Date: Tue, 11 Apr 2023 22:42:47 +0800 Subject: [PATCH 1/3] =?UTF-8?q?=E6=9B=BF=E6=8D=A2=20justauth.wiki=20?= =?UTF-8?q?=E5=9F=9F=E5=90=8D=EF=BC=8C=E8=AF=A5=E5=9F=9F=E5=90=8D=E6=9A=82?= =?UTF-8?q?=E6=97=B6=E4=B8=8D=E5=8F=AF=E7=94=A8=EF=BC=8C=E8=AF=B7=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=20justauth.cn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33e9380..a171f68 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ QQ 群:230017570 微信群:justauth (备注`justauth`或者`ja`) -帮助文档:[justauth.wiki](https://www.justauth.cn) +帮助文档:[www.justauth.cn](https://www.justauth.cn) ## 什么是 JustAuth? From 5171fb81487b441e01cc4f0d73fe152d8c685f27 Mon Sep 17 00:00:00 2001 From: "yadong.zhang" Date: Tue, 11 Apr 2023 22:45:58 +0800 Subject: [PATCH 2/3] =?UTF-8?q?=E6=9B=BF=E6=8D=A2=20justauth.wiki=20?= =?UTF-8?q?=E5=9F=9F=E5=90=8D=EF=BC=8C=E8=AF=A5=E5=9F=9F=E5=90=8D=E6=9A=82?= =?UTF-8?q?=E6=97=B6=E4=B8=8D=E5=8F=AF=E7=94=A8=EF=BC=8C=E8=AF=B7=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=20justauth.cn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java b/src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java index f6e653b..3641191 100644 --- a/src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java +++ b/src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java @@ -32,7 +32,6 @@ public class AuthFeiShuRequestTest { System.out.println("state==" + state); String authorize = request.authorize(state); System.out.println("authorize==" + authorize); - Assert.assertNotNull(authorize); } @Test @@ -50,11 +49,9 @@ public class AuthFeiShuRequestTest { .state(state) .build(); AuthToken accessToken = ((AuthFeishuRequest) request).getAccessToken(callback); - Assert.assertNotNull(accessToken); System.out.println("token==" + accessToken.getAccessToken()); AuthUser userInfo = ((AuthFeishuRequest) request).getUserInfo(accessToken); - Assert.assertNotNull(userInfo); System.out.println("userInfo==" + JSON.toJSONString(userInfo)); } From 0d599d75f0bdd0f55beb83d4c5994049d8697b51 Mon Sep 17 00:00:00 2001 From: "yadong.zhang" Date: Tue, 11 Apr 2023 22:46:53 +0800 Subject: [PATCH 3/3] =?UTF-8?q?=E6=9B=BF=E6=8D=A2=20justauth.wiki=20?= =?UTF-8?q?=E5=9F=9F=E5=90=8D=EF=BC=8C=E8=AF=A5=E5=9F=9F=E5=90=8D=E6=9A=82?= =?UTF-8?q?=E6=97=B6=E4=B8=8D=E5=8F=AF=E7=94=A8=EF=BC=8C=E8=AF=B7=E4=BD=BF?= =?UTF-8?q?=E7=94=A8=20justauth.cn?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java b/src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java index 3641191..a1255f7 100644 --- a/src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java +++ b/src/test/java/me/zhyd/oauth/request/AuthFeiShuRequestTest.java @@ -71,9 +71,7 @@ public class AuthFeiShuRequestTest { .state(state) .build(); AuthResponse response = request.login(callback); - Assert.assertNotNull(response); AuthUser user = (AuthUser) response.getData(); - Assert.assertNotNull(user); System.out.println(JSON.toJSONString(user)); }