With this code, I get a list of user posts (his tweets):

public void getwalltw(){ final UserTimeline userTimeline = new UserTimeline.Builder() .build(); final TweetTimelineListAdapter adapter = new TweetTimelineListAdapter.Builder(getActivity()) .setTimeline(userTimeline) .build(); setListAdapter(adapter); 

Is there anything like that to get a list of tweets from the pages to which the user is subscribed? That is, what we see when we go to the "Home" tab on Twitter. Thank.

  • Does the Twitter API documentation really lack this? - Arnis Shaykh
  • Help please find) - Donald Rump

1 answer 1

I think this is what you are looking for. For the future, if you do not know English, type in the search keywords that match your search. To find this documentation, it’s enough to drive a twitter api get feed .

  • usertimeline returns only the user's posts, and how to get the feed. Can you show me? - Donald Rump
  • Changed the link. I think this is the closest to what you want. - Arnis Shaykh
  • Yes, I think it will suit me, thanks! - Donald Rump