map.put("media_id", mediaId);
args.put("text", text);
args.put("access_token", getAccessToken());
String uri = uriConstructor.constructUri(UriFactory.Comments.POST_MEDIA_COMMENT, map, false);
PostMethod post = new PostMethod(uri).setPostParameters(args);
JSONObject object = post.call().getJSON();
return new Comment(object.getJSONObject("data"), getAccessToken());
}
public boolean removeComment(String mediaId, String commentId) throws Exception {
HashMap<String, Object> map = new HashMap<String, Object>();