OAuthAccessor accessor = consumerData.getAccessor();
LOG.info("Signature base string: " + OAuthSignatureMethod.getBaseString(message));
VALIDATOR.validateMessage(message, accessor);
} catch (NoSuchAlgorithmException e) {
throw new OAuthException("Error validating OAuth request", e);
} catch (URISyntaxException e) {
throw new OAuthException("Error validating OAuth request", e);
} catch (OAuthException e) {
throw new OAuthException("Error validating OAuth request", e);
} catch (IOException e) {
throw new OAuthException("Error validating OAuth request", e);
}
}