Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
S
sso
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
曲欣亮
sso
Commits
1e2537b5
Commit
1e2537b5
authored
Jul 29, 2019
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
e086405d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
2 deletions
+27
-2
OAuthApi.java
src/main/java/com/egolm/sso/oauth/OAuthApi.java
+2
-0
OAuthConfig.java
src/main/java/com/egolm/sso/oauth/OAuthConfig.java
+25
-2
No files found.
src/main/java/com/egolm/sso/oauth/OAuthApi.java
View file @
1e2537b5
...
...
@@ -66,7 +66,9 @@ public interface OAuthApi {
builder
.
setGrantType
(
GrantType
.
AUTHORIZATION_CODE
);
builder
.
setClientId
(
config
.
getClientId
());
builder
.
setClientSecret
(
config
.
getClientSecret
());
builder
.
setParameter
(
"realm"
,
config
.
getRealm
());
builder
.
setRedirectURI
(
config
.
getRediretUrl
());
builder
.
setScope
(
config
.
getScope
());
builder
.
setCode
(
code
);
OAuthClientRequest
oauthClientRequest
=
builder
.
buildQueryMessage
();
OAuthClient
oAuthClient
=
new
OAuthClient
(
new
URLConnectionClient
());
...
...
src/main/java/com/egolm/sso/oauth/OAuthConfig.java
View file @
1e2537b5
...
...
@@ -4,10 +4,12 @@ import java.io.Serializable;
import
com.alibaba.fastjson.JSON
;
public
class
OAuthConfig
implements
Serializable
{
public
class
OAuthConfig
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1874417633433974015L
;
private
String
realm
=
"/se"
;
private
String
scope
=
"openid profile"
;
private
String
clientId
;
private
String
clientSecret
;
private
String
rediretUrl
;
...
...
@@ -57,4 +59,25 @@ public class OAuthConfig implements Serializable{
public
String
toString
()
{
return
JSON
.
toJSONString
(
this
,
true
);
}
public
String
getRealm
()
{
return
realm
;
}
public
void
setRealm
(
String
realm
)
{
this
.
realm
=
realm
;
}
public
String
getScope
()
{
return
scope
;
}
public
void
setScope
(
String
scope
)
{
this
.
scope
=
scope
;
}
public
static
long
getSerialversionuid
()
{
return
serialVersionUID
;
}
}
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