Package weibo4j

Examples of weibo4j.Weibo.showStatus()


      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();
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.