Hi,
You need to use the UserStream. The goal of the userstream is to receive all the events related with an account.
When a follower post a tweet for example the information will be received by the userstream.
Tweetinvi 0.9.0.0
Regards,
Linvi
You need to use the UserStream. The goal of the userstream is to receive all the events related with an account.
When a follower post a tweet for example the information will be received by the userstream.
Tweetinvi 0.9.0.0
var userStream = Stream.CreateUserStream();
userStream.TweetCreatedByAnyoneButMe += (sender, args) =>
{
Console.WriteLine("Tweet created by {0}", args.Tweet.Creator.Name);
};
userStream.StartStream();
Tweetinvi 0.8.3.23IUserStream userStream = new UserStream();
us.TweetCreatedByAnyoneButMe += (sender, args) =>
{
Console.WriteLine("Tweet created by {0}!", args.Value.Creator.Name);
};
userStream.StartStream(token);
Hope this helps.Regards,
Linvi