I am trying to get the updated tweet after doing favorite operation but the tweet in response in not having any media urls. Following is the code I am using to look up for that tweet id. I have made include entities as true still it is now including media urls. Can someone explain me the correct way to get media urls also.
statusesService.lookup(Long.toString(id), true, false, false, new Callback<List<Tweet>>() {
@Override
public void success(Result<List<Tweet>> result) {
updateTweet(result.data.get(0), 0);
}
@Override
public void failure(TwitterException e) {
}
});