New Post: Subscribing to Stream for only retweets
Yes there is one. You need to create a new Tweet and then destroy it.long tweetId = ...; var tweet = new Tweet(tweetId, token); var tweetDestroyed = tweet.Destroy(); Kind Regards, Linvi
View ArticleNew Post: Deleting a tweet
Hi Chagina, Here is a copy to a reply from the discussion https://tweetinvi.codeplex.com/discussions/477952. Yes there is one. You need to create a new Tweet and then destroy it.long tweetId = ...; var...
View ArticleNew Post: Deleting a tweet
Awesome!... Thanks a bunch for the reply...let me work on it, will let you know if i bump into any other problem...
View ArticleNew Post: Get user's stream through a browser
Hello, I'm writing a small web application that will show to the user its recently tweets(and also the ones he follows). I'm able to redirect the user to a URL which there he authorize my app, then the...
View ArticleNew Post: Get user's stream through a browser
Hello, All depends on whqt you want to do. The UserStream allows to have a permanent connection to Twitter in order to get the latest events related with a specific User Token (that you get from the...
View ArticleNew Post: Get user's stream through a browser
Thank you very much for the quick response! The example you gave it's exactly what i need, but the problem that in order to create an instance Token , i need to have also the AccessSecretToken which i...
View ArticleNew Post: Can't see where user add their information for sending a tweet
Hi at all, I just start using the Tweetinvi API for my next Metro Application. First of all i downloaded the sample and i tried to understand where the user insert their username and password for...
View ArticleNew Post: Get all tweets with specific hashtag
What we need to send in token ? In this line GetListOfTweetsWithHashTag("tweetinvi", token);
View ArticleNew Post: Get the list of tweets whose retweets are more than 5 on basis of...
I am using the code discussed in this thread I have two issues: 1) I am getting only 15 users no matter what hashtag should i use 2) I need some filtration on the basis of re tweets, can someone guide...
View ArticleNew Post: Can't see where user add their information for sending a tweet
Hi, This feature does not exist anymore because the development team of the Twitter API wanted to disable this feature. Consequently, you need to use the TokenCreator to create a Token. A token contain...
View ArticleNew Post: Get the list of tweets whose retweets are more than 5 on basis of...
Hi,1) I am getting only 15 users no matter what hashtag should i use Yes the reason for that is that it is the default value of the count parameter. If you wish to change that please replace :string...
View ArticleNew Post: Simple stream not stopping when asked
Hello, I managed to use streaminvi to get tweets from twitter, but something weird is happening. What is the correct way to stop the stream? I do it inside the Func code, and until this morning it...
View ArticleNew Post: Simple stream not stopping when asked
Hi there,What is the correct way to stop the stream? Normally you should always be able to stop a stream using Stream.StopStream().SimpleStream stream = new...
View ArticleUpdated Wiki: Home
The development speed is reduced because of personal technical issues :( What's new? About Tweetinvi Tweetinvi an intuitive C# SDK for Twitter APITweetinvi is an intuitive .NET C# SDK that provides an...
View ArticleNew Post: Noob: How to authorise with username and password?
Never having used your api nor oAuth could you should an example of how to authorise with just the consumer keys and a user's name and password? Thanks.
View ArticleNew Post: Simple stream not stopping when asked
Hi linvi, I tried your suggestion, it didn't work (the method never gets to the lines of code after this one). this is my code:_SimpleStream.StartStream(_Token, tweet => { if (_Tweets.Count <...
View ArticleNew Post: Simple stream not stopping when asked
Hi Yossi, I am pretty confident with the fact that your condition _Tweets.Count < iNumTweets is never met because I believe that the condition tweet.Text.StartsWith("RT") is very rare and...
View ArticleSource code checked in, #34065
Version 0.9.0.0 - Tested TweetQueryExecutor - Created an UnFavourite method for Tweets in order to simplify the syntax and improve the readability. UnFavoriting required to call the Favourite method...
View ArticleCommented Task: Add Test Cases for All the current methods that does not [1785]
Possibility to Mock<IToken> to get the results we expect instead of directly performing the queries.Comments: Associated with changeset 34065: Version 0.9.0.0- Tested TweetQueryExecutor- Created...
View ArticleNew Post: Simple stream not stopping when asked
Hi Linvi, First, i wish to thank you for your help. To the point, i know for sure that the condition is met as i have debugged the code more than once. You will be surprised to learn that...
View Article