public class GetCommentToMe {
public static void main(String[] args) {
String access_token = args[0];
Weibo weibo = new Weibo();
weibo.setToken(access_token);
Comments cm = new Comments();
try {
CommentWapper comment = cm.getCommentToMe();
for(Comment c :comment.getComments()){
Log.logInfo(c.toString());