New Post: REST API Timeout. Cannot see requests getting sent
Hi Linvi, I appreciate you're a busy man, so thank you very much for taking the time to look into this! I've been running the program to reproduce the bug with your fix for the past ~20 hrs and it has...
View ArticleNew Post: Tweetinvi STREAM works on console application but It does not work...
Having had experience of this.. SignalR Hub classes are transient meaning that Hub instances are created each time a client creates a connection with SignalR. So the Hub class is not the place to put...
View ArticleNew Post: Tweetinvi STREAM works on console application but It does not work...
Thanks adaam for your contribution. I think this is quite relevant. Some people might have other ideas but I think this is a good way to do. Cheers, Linvi
View ArticleNew Post: First time user
Just installed the Nuget package to VS3013 Professional. Create a new class, within that class I have added: TwitterCredentials.SetCredentials(...); and Tweet.CreateTweet(tweet); in my usings I have:...
View ArticleCreated Unassigned: Verify Timeout Settings are correctly used [2552]
https://tweetinvi.codeplex.com/discussions/626398
View ArticleEdited Unassigned: Verify Timeout Settings are correctly used [2552]
https://tweetinvi.codeplex.com/discussions/626398
View ArticleNew Post: REST API Timeout. Cannot see requests getting sent
Hi, I will verify the Timeout issue. I have created a new bug related with this.https://tweetinvi.codeplex.com/workitem/2552 Linvi
View ArticleNew Post: First time user
Well, you need to add using statements to reference the appropriate namespace. Here is a bunch of them, you will probably not need all of these.using Tweetinvi; using Tweetinvi.Core; using...
View ArticleNew Post: First time user
Very odd. As I said, I did have the one using for just the tweetinvi, according to the intellisense that should have worked. But, I'm willing. I added all the Tweetinvi.core usings that you listed...
View ArticleNew Post: First time user
Ok, I Uninstalled the nugget package and just went with the downloaded dlls. Got the same result. I then decided to change my target framework from .NET 4.0 to 4.5. The usings then worked fine and I...
View ArticleNew Post: Tweetinvi STREAM works on console application but It does not work...
First of all, thanks linvi and adaam2 for your replay and help. As adaam2 said, I read deeply the SignalR docs and found (and hope understand :)) that transient class concept; then I put my code in a...
View ArticleNew Post: StartStreamMatchingAllConditions v StartStreamMatchingAnyConditions
Hi, Thanks very much for your answer! I have one other question, is it in any way possible to know which tweet came from which location? Thanks!
View ArticleNew Post: get user latest 3000 tweets
any code example on how to get the latest 3000 or at least 2000 tweet for authorized user and save it on database ? also assume after i get this tweets i only want the app to get the newest only ,...
View ArticleNew Post: First time user
Hi, I will check that nothing has gone wrong with the build but you should be able to use the application with .NET 4.0. I'll get back to you probably tomorrow. I will have a very busy day today. Linvi
View ArticleNew Post: get user latest 3000 tweets
Also concerning getting latest tweets, I would personally use the UserStream if you have the credentials tokens of the user you want to analyze. The user stream listens to the event of the currently...
View ArticleCommented Unassigned: Unable to publish in reply to [2554]
I had the above mentioned working before and all of a sudden it has stopped. My code for replying to the tweet is as follows: var newTweet = Tweet.CreateTweet(message); var result =...
View ArticleNew Post: Twitter location
Hi, Tweets contains a Coordinates property.var coordinates = tweet.Coordinates;You can use this to determine whether a tweet is in a specific location.publicstaticbool CoordinatesLocatedIn(ICoordinates...
View ArticleNew Post: Twitter location
Also FilteredStream contains an event that will allow you to get all the matching locations. filteredStream.MatchingTweetAndLocationReceived += (sender, args) => { var locations =...
View ArticleCommented Unassigned: Unable to publish in reply to [2554]
I had the above mentioned working before and all of a sudden it has stopped. My code for replying to the tweet is as follows: var newTweet = Tweet.CreateTweet(message); var result =...
View ArticleNew Post: First time user
Hi, I have just tested the latest version and Tweetinvi is working properly with .NET 4.0 application. What type of application did you try to use? Linvi
View Article