Commented Feature: Check the Stream Update [2218]
Streams have been updated [https://dev.twitter.com/discussions/27246](https://dev.twitter.com/discussions/27246).Check which changes are required in Tweetinvi.Streams.Comments: Associated with...
View ArticleNew Post: REST API Timeout. Cannot see requests getting sent
Hi, Sorry for the long delays. As I said, I am quite busy right now. Please try the new version of Tweetinvi in which I added a fix for your specific issue. This might not fix your problem so please...
View ArticleNew Post: Twitter location
Hi, Sorry for the long delays in the reply. Yes you basically need to create a box. Or multiple boxes. All the tweets within any of these coordinates will be returned by Twitter. If you use the Filter...
View ArticleNew Post: Search old tweets
This limitation is by twitter API itself.https://dev.twitter.com/rest/public/search
View ArticleNew Post: Search old tweets
Yeah I know this (forgot to mention it). I asked it because from twitter there is no limitation. Also I searched a bit and found someone that made a Java program to "read" it (don't have the link). So...
View ArticleNew Post: Search old tweets
Hi, There is absolutely no way to do this in C#, Java or any language without by performing a request of a third party data partner. To do this you will have to pay for the data and you'll also have to...
View ArticleNew Post: [ANSWERED] How to use the rate limiter
Hi, Tweetinvi contains a RateLimit awaiter since version 0.9.6.0.// When performing a query, the RateLimitAwaiter will await for the RateLimits to be available before executing a query....
View ArticleNew Post: Search old tweets
I must disagree with you linvi. From twitter's website when you do a search, if you scroll down you will start loading more tweets. By doing so you can start digging in the history. I understand that...
View ArticleNew Post: Accessing Data from
A var variable is just a simple variable of a specific class deduced by C# at compilation time. In the case of the Timeline.GetUserTimeline, the var refers to IEnumerable<ITweet>. Cheers, Linvi
View ArticleNew Post: User to authenticate and get their respective user details
Hi, It depends which information you want to start from. But this if you either want friend, from an account, a name or an id.var user = User.GetUserFromId(14928031); var user =...
View ArticleNew Post: Streaming API Backoff Strategy
Hi, Concerning the number of streams that you can run simultaneously, I had been able to run 2 public streams at the same time, but no more. In the documentation it says that you should not be able to...
View ArticleNew Post: errors retrieving IUsers list from ID
Hi, Well I am quite surprised to find out that I never talked about the cursors in all this thread. Your problem right here is that you have not stored the cursor information. An...
View ArticleNew Post: Tweetinvi STREAM works on console application but It does not work...
As I said in a post recently, it has been a while that I have not worked with SignalR. But what you need to understand is that your webserver needs to be running this long Stream operation. Therefore...
View ArticleCreated Feature: Image Upload does not use Proxy [2551]
MultiPart WebRequest currently does not use the proxy defined in the TweetinviConfig.
View ArticleEdited Feature: Image Upload does not use Proxy [2551]
MultiPart WebRequest currently does not use the proxy defined in the TweetinviConfig.
View ArticleNew Post: Tweet with media proxy behavior
Hi, Well you are right, with the current WebLogic of Tweetinvi, the proxy is not set for MultiPart WebRequest which are the one required for image upload. I cannot implement this feature for the coming...
View ArticleNew Post: Filtered Stream Hangs
Hi, You can either use the async method as suggested or create a Thread/BackgroundTask that you "listen" in your main (UI) thread in order to update your UI. Your issue is a Thread issue not a...
View ArticleNew Post: Send message to all followers
Hi,Is their a way to send a message to all existing followers that can also include an image if so how please great looking libary As far as I am aware there is no way to publish images in Messages...
View ArticleEdited Feature: Image Upload does not use Proxy [2551]
MultiPart WebRequest currently does not use the proxy defined in the TweetinviConfig.
View Article