Hi,
I would recommend that you read the twitter documentation.
The logic of Tweetinvi is that you have a credentials that are scoped to a Thread.
To set your credentials use the following line:
To get tweets from the sample stream do the following:
Please read the documentation and if you have further request let me know.
Linvi
I would recommend that you read the twitter documentation.
The logic of Tweetinvi is that you have a credentials that are scoped to a Thread.
To set your credentials use the following line:
TwitterCredentials.SetCredentials("Access_Token", "Access_Token_Secret", "Consumer_Key", "Consumer_Secret");
var sampleStream = Stream.CreateSampleStream();
sampleStream.TweetReceived += (sender, args) => { Console.WriteLine(args.Tweet.Text); };
sampleStream.StartStream();
Linvi