System.setProperty("weibo4j.oauth.consumerSecret", Weibo.CONSUMER_SECRET);
try {
Weibo weibo = getWeibo(true,args);
List<Status> list = weibo.getUserTimeline("1748033497", new Paging(1).count(4));
if(list.size() > 0) {
Status status = weibo.showStatus(list.get(0).getId());
System.out.println( status.getId() + " : "+status.getText());
}
} catch (Exception e) {
e.printStackTrace();
}