import weibo4j.org.json.JSONArray;
public class GetCommentsDaily {
public static void main(String[] args) {
String access_token = args[0];
Weibo weibo = new Weibo();
weibo.setToken(access_token);
Timeline tm = new Timeline();
try {
JSONArray status = tm.getCommentsDaily();
Log.logInfo(status.toString());