Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
739d36a0
Commit
739d36a0
authored
Jan 13, 2025
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
鉴权-fxj
parent
d85f2fae
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
WxLoginAuthenticationFilter.java
...plus/v1/yifu/auth/filter/WxLoginAuthenticationFilter.java
+1
-1
YifuWxLoginSuccessHandler.java
.../plus/v1/yifu/auth/handler/YifuWxLoginSuccessHandler.java
+1
-1
No files found.
yifu-auth/src/main/java/com/yifu/cloud/plus/v1/yifu/auth/filter/WxLoginAuthenticationFilter.java
View file @
739d36a0
...
@@ -60,7 +60,7 @@ public class WxLoginAuthenticationFilter extends AbstractAuthenticationProcessin
...
@@ -60,7 +60,7 @@ public class WxLoginAuthenticationFilter extends AbstractAuthenticationProcessin
}
}
AbstractAuthenticationToken
authRequest
;
AbstractAuthenticationToken
authRequest
;
String
code
=
obtainParameter
(
request
,
"code"
);
String
code
=
obtainParameter
(
request
,
"code"
);
if
(
!
Common
.
isEmpty
(
code
))
{
if
(
Common
.
isEmpty
(
code
))
{
throw
new
AuthenticationServiceException
(
"未获取到授权码:"
+
code
);
throw
new
AuthenticationServiceException
(
"未获取到授权码:"
+
code
);
}
}
// String result = restTemplate.getForObject(String.format(SecurityConstants.WX_GET_ACCOSS_TOKEN, wxConfig.getCorpid(), wxConfig.getCorpsecret()), String.class);
// String result = restTemplate.getForObject(String.format(SecurityConstants.WX_GET_ACCOSS_TOKEN, wxConfig.getCorpid(), wxConfig.getCorpsecret()), String.class);
...
...
yifu-auth/src/main/java/com/yifu/cloud/plus/v1/yifu/auth/handler/YifuWxLoginSuccessHandler.java
View file @
739d36a0
...
@@ -81,7 +81,7 @@ public class YifuWxLoginSuccessHandler implements AuthenticationSuccessHandler {
...
@@ -81,7 +81,7 @@ public class YifuWxLoginSuccessHandler implements AuthenticationSuccessHandler {
scope
.
add
(
"server"
);
scope
.
add
(
"server"
);
TokenRequest
tokenRequest
=
new
TokenRequest
(
MapUtil
.
newHashMap
(),
"auth"
,
scope
,
"password"
);
TokenRequest
tokenRequest
=
new
TokenRequest
(
MapUtil
.
newHashMap
(),
"auth"
,
scope
,
"password"
);
//校验scope
//校验scope
ClientDetails
clientDetails
=
clientDetailsService
.
loadClientByClientId
(
null
);
ClientDetails
clientDetails
=
clientDetailsService
.
loadClientByClientId
(
"auth"
);
new
DefaultOAuth2RequestValidator
().
validateScope
(
tokenRequest
,
clientDetails
);
new
DefaultOAuth2RequestValidator
().
validateScope
(
tokenRequest
,
clientDetails
);
OAuth2Request
oAuth2Request
=
tokenRequest
.
createOAuth2Request
(
clientDetails
);
OAuth2Request
oAuth2Request
=
tokenRequest
.
createOAuth2Request
(
clientDetails
);
OAuth2Authentication
oAuth2Authentication
=
new
OAuth2Authentication
(
oAuth2Request
,
authentication
);
OAuth2Authentication
oAuth2Authentication
=
new
OAuth2Authentication
(
oAuth2Request
,
authentication
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment