My application is hanging when I try to use the filteredStream.
Here is my code:
Any suggestions as to what might be wrong?
Best regards
Here is my code:
//ValueThatLtd tests
TwitterCredentials.SetCredentials("my various keys",,,);
// Access the filtered stream
var filteredStream = Stream.CreateFilteredStream();
filteredStream.AddTrack("justtesting");
filteredStream.MatchingTweetReceived += (sender, args) => { Console.WriteLine(args.Tweet.Text); };
filteredStream.StartStreamMatchingAllConditions();
And then it hangs. I am using version 0.9.3.4 of Tweetinvi within MVC project (from template) in Visual Studio 2013. I call the above code from a controller.Any suggestions as to what might be wrong?
Best regards