Package com.google.gdata.data.youtube

Examples of com.google.gdata.data.youtube.CommentEntry


    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");
View Full Code Here

TOP

Related Classes of com.google.gdata.data.youtube.CommentEntry

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.