fix: Migrate away from /userinfo
1 unresolved thread
1 unresolved thread
Resolves #25 (closed)
Merge request reports
Activity
Filter activity
requested review from @malowe
55 62 56 63 DrupalOAuthData tokenStatus = oauthService.validateTokenStatus(token, validScopes.get(), 57 64 validClientIds.get()); 58 if (tokenStatus != null) { 59 65 60 // Set token data into context 61 requestContext.setProperty(RequestContextPropertyNames.TOKEN_STATUS, tokenStatus); 66 // The incoming token must have a user associated with it. 67 if (tokenStatus == null || tokenStatus.getUserId() == null) { 68 throw new FinalForbiddenException("Invalid user credentials"); mentioned in commit 1a81dc82
Please register or sign in to reply