简体   繁体   中英

Neither Fabric for Android nor twitter4j find tweets containing a specific user's mention

I'm trying to retrieve tweets that mention an specific user either using fabric for android or twitter4j, but I'm not getting anything.

-With Fabric for Android I'm doing it with "twitterApiClient.getSearchService().tweets" (logged in as a guest previously)

-With twitter4j, this is my code:

 public List<Long> twList (String user){
    List<Long> listTw = new ArrayList<>();
    lastID = Long.MAX_VALUE;
    int tamano = 0;
    ArrayList<Status> tweets = new ArrayList<Status>();
    String mention = "@"+user.trim();
    query = new Query(user);
    while (tweets.size() < numberOfTweets) {
        tamano = tweets.size();
        if (numberOfTweets - tweets.size() > 100) {
            query.setCount(100);
        } else {
            query.setCount(numberOfTweets - tweets.size());
        }
        try {
            QueryResult result = twitter.search(query);
            tweets.addAll(result.getTweets());
            Log.d("App", "Gathered " + tweets.size() + " tweets");
            for (Status t : tweets) {
                if (t.getId() < lastID) {
                    lastID = t.getId();
                }
            }
        } catch (TwitterException te) {
            Log.d("App", "Couldn't connect: " + te);
        }
        query.setMaxId(lastID - 1);
        if (tamano == tweets.size()) break;
    }
    for (Status s: tweets){
        if (s.getText().matches(mention)){
            listTw.add(s.getId());
            Log.d("App", s.getText());
        }
    }
    tweets.clear();
    return listTw;
}

When I look for the username on Twitter website, I get those tweets where it's mentioned.

Any idea?

When was the last time a Tweet including the username you're searching for, posted? The Search API (which is used by both Fabric and Twitter4j) only covers around 7 days of data. The website has the complete archive, but that is not available in the public Twitter API.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM