Hi,
Would you please be more precise on what you are trying to do.
To add credentials in Tweetinvi just use the following method with your credentials.
When this is done you can access all the Twitter API from Tweetinvi and consequently the streaming API as followed.
Please read the documentation for the examples.
If you need more complex access to the Streaming API please let me know and I will help you.
Regards,
Linvi
Would you please be more precise on what you are trying to do.
To add credentials in Tweetinvi just use the following method with your credentials.
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();
If you need more complex access to the Streaming API please let me know and I will help you.
Regards,
Linvi