public boolean removeComment(String mediaId, String commentId) throws Exception {
HashMap<String, Object> map = new HashMap<String, Object>();
map.put("media_id", mediaId);
map.put("comment_id", commentId);
String uri = uriConstructor.constructUri(UriFactory.Comments.DELETE_MEDIA_COMMENT, map, true);
JSONObject object = (new DeleteMethod(uri)).call().getJSON();
return object.getJSONObject("meta").getInt("code") == 200;
}