New Post: [Streaming API] Get Tweets and Replies for the User
This code actually works. Problem was that i originally used StartStreamMatchingAllConditions and should be StartStreamMatchingAnyCondition for my case. Thanks var stream =...
View ArticleNew Post: [Streaming API] How to properly reconnect
Hello Do you have any best practices for [Streaming API] reconnect strategy in case of any network problems? Any code examples please. Regards Ozzy
View ArticleNew Post: [Streaming API] How to properly reconnect
Oh, You start asking confidential questions here. Their are many many ways to implement a reconnect strategy. I have been discussing this over and over. To make it simple, Tweetinvi is already...
View ArticleSource code checked in, #44291
Version 0.9.8.0 - Added additional methods for Timeline.GetUserTimeline
View ArticleNew Post: How to get long followers list
Hi @linvi : I want the ids, the fact it´s how to make this because the documentation it´s very poor. Thanks!
View ArticleNew Post: How to get long followers list
linvi wrote: Hi, What do you mean by a long list of user followers? Do you want the ids, or the user objects? The fact that you store these in a DB has nothing to do with Tweetinvi, does it? Linvi Hi...
View ArticleNew Post: How to get long followers list
I am using this code: do { var results = TwitterAccessor.ExecuteCursorGETCursorQueryResult<IIdsCursorQueryResultDTO>(followerQuery, int.MaxValue, cursor); if (results != null) { var resultsArray...
View ArticleEdited Issue: Long generated URLs result in 503 [2240]
I've noticed that when creating a Filtered Stream and following a large amount of users (over 1000 or so in my case), that I start consistently receiving 503 responses from stream.twitter.com. Twitter...
View ArticleNew Post: How to get long followers list
Sorry for the documentation. I am currently rewriting a way more detailed documentation. This will be part of the announcement of Tweetinvi 0.9.8.0 It all depends on how much control you want to have...
View ArticleNew Post: How to get long followers list
Thanks for your reply! I dónt need the rate limit method beacause my software it´s not waiting every time beacause it´s a service that starts and stop and I have to resumen the search operation. I need...
View ArticleNew Post: TwitterCredentials doesn't exist in context
Hi, Yes i am doing the same with my keys like: public void Authenticate() {TwitterCredentials.SetCredentials( "My_Access_Token", "My_Access_Token_Secret", "My_API_Key", "My_API_Secret"); authenticated...
View ArticleNew Post: TwitterCredentials doesn't exist in context
Hi, Do you mind sharing your project as I do not understand what is going wrong here. Linvi
View ArticleNew Post: TwitterCredentials doesn't exist in context
Hi, Don't have anything in project. This is the only method...even page load is still blank currently. Added below namespaces manually: using Tweetinvi; using Tweetinvi.Model; using Tweetinvi.Helpers;...
View ArticleNew Post: How to get long followers list
Here is how I would do it (and I checked it works as expected). RateLimit.AwaitForQueryRateLimit("https://api.twitter.com/1.1/followers/ids.json?screen_name=shakira"); var results =...
View ArticleCommented Feature: Implement : [followers/list] [1722]
Reference : https://dev.twitter.com/docs/api/1.1/get/followers/listParameters :- user_id / screen_name- cursor- skip_status- include_user_entities (to be determined - improve performance when no...
View ArticleNew Post: How to get long followers list
PS : I will improve the answer when I have some more time.
View ArticleNew Post: [Streaming API] How to properly reconnect
It works thanks! Example for Filtered Stream that works for me: stream = Stream.CreateFilteredStream(); stream.AddFollow(759251); //CNN stream.MatchingTweetReceived += (sender, args) => { var tweet...
View ArticleReviewed: Tweetinvi 0.9.7.x (Jun 01, 2015)
Rated 5 Stars (out of 5) - Amazing! Simple to use. The best Twitter .Net lib
View ArticleNew Post: How to get long followers list
As promised, please find an improved version of the code:// Retrieve all the follower ids the RateLimit tokens authorize in one goprivate IEnumerable<IIdsCursorQueryResultDTO>...
View ArticleNew Post: multi thread behavior
Hi, I am new into this subject, so maybe this is a basic question but I dont know the answer. I am having multithreads in my application but in this case the application is running very slowly. I think...
View Article