2014-03-06 84 views

回答

1

據我所知,你想知道每個狀態有多少推特計數,對吧。有一種方法可以通過狀態對象來獲取實際的推特轉推數。

請看下面簡單的代碼,其是印刷在時間軸每個鳴叫爲給定用戶ID的鳴叫ID和轉推計數:

long userId = 0000000L; 

    try 
    { 
     ResponseList<Status> statusList = twitterObj.timelines().getUserTimeline(userId); 

     for (Status statusItem : statusList) 
     { 
     System.out.println("Tweet Id : " + statusItem.getId() + ", retweet count: " + statusItem.getRetweetCount()); 
     }    
    } 
    catch (TwitterException ex) 
    { 
     // Do error handling things here 
    }