String input = readLine();
String commentUrl = videoEntry.getComments().getFeedLink().getHref();
CommentEntry newComment = new CommentEntry();
newComment.setContent(new PlainTextConstruct(input));
try {
service.insert(new URL(commentUrl), newComment);
} catch (ServiceException se) {
System.out.println("There was an error adding your comment.\n");