Examples of replyComment()


Examples of weibo4j.Comments.replyComment()

    String comments = args[1];
    String id = args[2];
    String cid = args[3];
    Comments cm = new Comments();
    try {
      Comment com = cm.replyComment(cid, id, comments);
      Log.logInfo(com.toString());
    } catch (WeiboException e) {
      e.printStackTrace();
    }
  }
View Full Code Here

Examples of weibo4j.Comments.replyComment()

    String id = args[2];
    String cid = args[3];
    Comments cm = new Comments();
    cm.client.setToken(access_token);
    try {
      Comment com = cm.replyComment(cid, id, comments);
      Log.logInfo(com.toString());
    } catch (WeiboException e) {
      e.printStackTrace();
    }
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.