public Map<String, Map<String, String>> imageExif(String id) throws N0ticeException {
    final OAuthRequest request =
        createOauthRequest(Verb.GET, urlBuilder.get("image/" + id + "/exif"));
    oauthSignRequest(request);

    final Response response = request.send();
    if (response.getCode() == 200) {
      return exifParser.parse(response.getBody());
    }

    handleExceptions(response);
    throw new N0ticeException(response.getBody());
  }