general twitter4j questions
in
Contributed Library Questions
•
1 year ago
hi,
I have a general question regarding the twitter4j library. if I want to acces info under the "user" category (see documentation / link "user" in the lower left frame) , I can do that by first defining the user like this:
what tells me, what I need to do before I can access these things?
I have a general question regarding the twitter4j library. if I want to acces info under the "user" category (see documentation / link "user" in the lower left frame) , I can do that by first defining the user like this:
- User user = twitter.showUser(USERID);
- tweets = user.getStatusesCount(); // for number of status updates
- followers = user.getFriendsCount(); // for number of followers
- RateLimitStatus rate = twitter.getRateLimitStatus();
- println(rate.getRemainingHits());
what tells me, what I need to do before I can access these things?
1