String access_token = args[0];
Weibo weibo = new Weibo();
weibo.setToken(access_token);
Timeline tm = new Timeline();
try {
JSONObject ids = tm.getUserTimelineIdsByUid( args[1]);
Log.logInfo(ids.toString());
} catch (WeiboException e) {
e.printStackTrace();
}
}