Quantcast
Channel: Tweetinvi a friendly Twitter C# library
Viewing all articles
Browse latest Browse all 4126

New Post: How do you stream only followed users

$
0
0
Ok.. sorry.. it doesnt work as I thought it would be..

For example.. I have subscribed to @Reuters. And on my Twitter home page are tweets from @Reuters (that what I want).. But in the TweetInvi I am getting Reuters and others (I dont know what they are but the text mentioned @Reuters but is not the author... For example some guy called Fallapart The Clown writes some text started with "@Reuters" - seems people replying to the @Reuters tweets (I guess))..

My code:
        private IUserStream StartUserStream(IToken token)
        {
            IUserStream us = new UserStream();

            us.TweetCreatedByAnyone += (sender, args) =>
            {
                this.Dispatcher.BeginInvoke(new Action(() =>
                {
                    AddTweet(args.Value);
                }));
            };

            var a = new Action(() =>
            {
                us.StartStream(token);
            });

            a.BeginInvoke(null, null);

            return us;
        }
so basically I need to replicate Home page of my Twitter account.

Its almost there just one more push and I am good to go! :))

Thank you

Viewing all articles
Browse latest Browse all 4126

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>