Add proper handling when invalid token is received

This commit is contained in:
Janak Amarasena 2017-06-26 18:37:01 +05:30
parent e23ef52e61
commit 21a9df97bb

View File

@ -99,6 +99,8 @@ public class AccessTokenGrantHandler extends AbstractAuthorizationGrantHandler {
username = response.getUserName();
userTenantDomain = MultitenantUtils.getTenantDomain(username);
spTenantDomain = response.getTenantDomain();
} else if (response != null && !response.isValid()) {
throw new IdentityOAuth2Exception("Authentication failed for the provided access token");
}
}