return mapperService;
}
@Override
public Response sendSignedRequest(OAuthRequest request) {
RequestTuner tuner;
try {
tuner = tunerProvider.get();
tuner.tune(request);
} catch (RuntimeException e) {
LOGGER.log(Level.FINE, "No Tuner found for " + getSocialMediaName());
} finally {
signRequest(getAccessToken(), request);
return request.send(); //todo:should check return code and launch ResponseException if it's not 200