protected String downloadUrlToString(
      String url, Map<String, String> headers, HttpContext httpContext) throws IOException {
    LOG.info("Downloading to string: " + url);

    return utils.downloadToString(new URL(url), headers, httpContext);
  }