New Post: Events stop firing
Hi Linvi It seems to work OK, but I don't know if this is because the problem is intermittent or not. Having said that, it is exactly how I would have done it, and I think it does what it is supposed...
View ArticleNew Post: Exclude retweets and replies
Hey, You seem to have missed CreateTweetStream() above. For a brief explanation and example of CreateTweetStream() there is a related discussion: https://tweetinvi.codeplex.com/discussions/540990 Horatiu
View ArticleNew Post: How to get twitter user ID in content
thanks, seems I will have to deal with a list to make this replacing working. My original thought is the RegEx replace to handle it in String manipulation. any thoughts?
View ArticleNew Post: How to get twitter user ID in content
let us say: What if I just and still want the @ABED_12 be replaced as AB, how to handle it with RegEx replacing or RegEx in C#?
View ArticleNew Post: How to get twitter user ID in content
The regex pattern "@[\w_]*" should match valid usernames. However, I'm not sure about replacing it. I don't know why you're so inclined towards regex, but here's a solution using UserMentions.var tweet...
View ArticleNew Post: How to get twitter user ID in content
thank you. man. THAT WAS EASY. I made things a little complex-ed. that is all. another issue for ForEach Error 1 'System.Collections.Generic.IEnumerable<string>' does not contain a definition for...
View ArticleNew Post: How to get twitter user ID in content
ForEach is not available for tweet.UserMentions. I don't know why?
View ArticleNew Post: problems with Stream no events fired
Any update to this issue? One thing is there error message are popping up in the console during runtime The thread 0x1668 has exited with code 259 (0x103). The thread 0x1904 has exited with code 259...
View ArticleNew Post: how to get more than one user's timeline from my followings ?
UserStream PROS vs Timeline:With UserStream you are not rate limited which would be the biggest problem you would encounter if you wanted to get the Timeline of all your followers. With UserStream you...
View ArticleNew Post: GetHomeTimeline not reliable
If you want to track down the number of requests that are remaining you can use the RateLimit. This will allow you to track down what is going wrong. Linvi
View ArticleNew Post: How to get twitter user ID in content
You probably miss the Extensions namespace.using Tweetinvi.Core.Extensions;Linvi
View ArticleNew Post: problems with Stream no events fired
Please have a look here. There is a temporary fix. Regards, Linvi
View ArticleNew Post: Stream Questions
Is it possible to limit streaming tweet to English? Also can you determine what the search term was for the returned tweet? Thanks, Carmen
View ArticleNew Post: Tweetinvi C# Desktop Application PIN Authentication
Hello, I'm looking to add a connector to our desktop application for Twitter using PIN based authorization, I was wondering if you had any examples of this. Thanks
View ArticleNew Post: GetHomeTimeline not reliable
I thought the rate limit is 180, actually it is 15 for GetHomeTimeline. How come? the document said 180
View ArticleNew Post: Stream Questions
Hi Carmen, It does not look like this is possible, Twitter does not provide this parameter (doc). But you can use the language parameter of the tweet though. fs.MatchingTweetReceived += (sender, args)...
View ArticleNew Post: Tweetinvi C# Desktop Application PIN Authentication
Hi, Yes there is: doc. Otherwise look into the Examplinvi.cs file provided in the downloads. Linvi
View Article