File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed
oauth-authorization-server/src/main/resources
oauth-ui-authorization-code-angular/src/main/resources/src/app Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 442
442
"implicitFlowEnabled" : true ,
443
443
"directAccessGrantsEnabled" : true ,
444
444
"serviceAccountsEnabled" : false ,
445
- "publicClient" : false ,
445
+ "publicClient" : true ,
446
446
"frontchannelLogout" : false ,
447
447
"protocol" : " openid-connect" ,
448
448
"attributes" : {
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ export class AppService {
23
23
let params = new URLSearchParams ( ) ;
24
24
params . append ( 'grant_type' , 'authorization_code' ) ;
25
25
params . append ( 'client_id' , this . clientId ) ;
26
- params . append ( 'client_secret' , 'newClientSecret' ) ;
27
26
params . append ( 'redirect_uri' , this . redirectUri ) ;
28
27
params . append ( 'code' , code ) ;
29
28
@@ -63,4 +62,4 @@ export class AppService {
63
62
64
63
window . location . href = logoutURL ;
65
64
}
66
- }
65
+ }
You can’t perform that action at this time.
0 commit comments