java - Get List of replys -


i using twitter4j getting tweets specific account on twitter `

try {         twitter twitter = new twitterfactory().getinstance();         user user = twitter.verifycredentials();         paging page = new paging(1,100);         list<status> status = twitter.getusertimeline("barackobama",page);         if (status != null){             (status statuses : status) {                 system.out.println("@" + statuses.getuser().getscreenname() + " - " + statuses.gettext());}} catch (twitterexception te) {         te.printstacktrace();         system.out.println("failed timeline: " + te.getmessage());         system.exit(-1);     }` 

now how can list of replys each status (tweet) have got????? have tried statuses.getinreplytostatusid() got nothing please me


Comments

Popular posts from this blog

Magento/PHP - Get phones on all members in a customer group -

php - Bypass Geo Redirect for specific directories -

php - .htaccess mod_rewrite for dynamic url which has domain names -