0
votes

How can I retrieve the latest tweets for multiple users on Twitter and display them in one feed?

I can only seem to find ways to pull one account using the API v1.1

How do I go about doing this?

1

1 Answers

1
votes
  1. Retrieve the tweets from user #1 and store in a list.
  2. Retrieve the tweets from user #2 and store in the same list.
  3. Sort the list by the timestamps of the tweets.
  4. Display the list.