You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fixed checking of refresh token permissions in client service, clients can now request either refresh_token grant type or offline_access scope and it will work. added checkbox to dynreg page for ease-of-use
Copy file name to clipboardExpand all lines: openid-connect-server/src/main/java/org/mitre/oauth2/service/impl/DefaultOAuth2ClientDetailsEntityService.java
+25-38Lines changed: 25 additions & 38 deletions
Original file line number
Diff line number
Diff line change
@@ -108,18 +108,28 @@ public ClientDetailsEntity saveNewClient(ClientDetailsEntity client) {
108
108
client = generateClientId(client);
109
109
}
110
110
111
-
// if the client is flagged to allow for refresh tokens, make sure it's got the right granted scopes
0 commit comments