String comments = args[1];
String id = args[2];
Comments cm = new Comments();
cm.client.setToken(access_token);
try {
Comment comment = cm.createComment(comments, id);
Log.logInfo(comment.toString());
} catch (WeiboException e) {
e.printStackTrace();
}
}