Hi,
I am not sure that I understand what you are willing to do.
From my understanding you want to get the tweets from a specific set of users.
If this is the case you can add each of the followers you have to this list.
Linvi
I am not sure that I understand what you are willing to do.
From my understanding you want to get the tweets from a specific set of users.
If this is the case you can add each of the followers you have to this list.
var currentUser = User.GetLoggedUser(); var followerIds = currentUser.GetFollowerIds(); var fs = Stream.CreateFilteredStream(); followerIds.ForEach(id => fs.AddFollow(id)); fs.StartStreamMatchingAllConditions();