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:
Its almost there just one more push and I am good to go! :))
Thank you
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