Hi there,
If you download the source code, you will find a project named Examplinvi.
In this project you will have an example for all the functions provided within the API.
In your case, you want to use the UserStream.
Hope this helps you.
Kind Regards,
Linvi
If you download the source code, you will find a project named Examplinvi.
In this project you will have an example for all the functions provided within the API.
In your case, you want to use the UserStream.
IToken token = new Token("xxx", "xxx", "xxx", "xxx"); // Set your credentials here.
IUserStream us = new UserStream();
us.TweetCreatedByAnyone += (sender, args) =>
{
Console.WriteLine("Tweet '{0}' created!", args.Value.Text);
};
us.StartStream(token);
This piece of code will write in the console the text of all the tweets created by a user that is related to you.Hope this helps you.
Kind Regards,
Linvi